Tag: Anemic Domain Model
All the articles with the tag "Anemic Domain Model".
-
[DDD Intro #13] What it means to put behavior into domain objects
Even when a team says it applies DDD, domain objects often do almost nothing in real code. Class names look domain-like, such as Subscription, Order, and Payment, but inside they only have fields, getters, and setters. Most important rules live in service classes such as SubscriptionService, OrderService, and PaymentService.