3
Could you help me with a question. In DDD architecture what types of methods should I put in my Entity and which ones should I put in my Domain Service? I know that in my entity I must put at least the method of validation of the entity itself, and when to the rest of the methods I must put in the domain service or there are other types of methods I can put in the entity? Thank you.
An entity publishes all its behaviors. The services fit the behaviors that do not belong naturally to any entity.
– Caffé