Evolving Coordination Layer
I've posted about this before but on my project we have a coordination layer that sits above the domain but I thought I'd add another post about it.
Since a coordination layer is quite closely linked to a domain assembly we have more than one of them, so if we had two domain models our projects would be:
Company.Customers.Domain - Company.Customers.Domain.Coordination
- Company.Customers.Peristence
- Company.Finance.Domain
- Company.Finance.Domain.Coordination
- Company.Finance.Peristence
- Create the Customer by calling into a CustomerFactory within the Customer domain assembly.
- Create a CustomerCreditCheckRequest and associate it with the new Customer before saving it. This logic obviously calls off to a repository and to the Finance domain and so cannot go into Company.Customers.Domain.
- Return the Customer.
When Is A Domain Service Enough?
There is another "issue", what do if we already have a coordination layer service and no domain service and want to decide where to put some code. For example lets say Order/Customer aggregates are in a single domain assembly but a rule is that for an Order to become active we must ensure the Customer has a valid Address. This is a cross aggregate rule but we could enforce it in a domain service, there is no specific need for the coordination layer to be involved. So we could have an OrderActivationService in the domain, however we already have an OrderService in the coordination layer...do we put the code in there instead?
Although I originally thought of just putting the cross aggregate logic in the domain I've been swayed by a colleague and of course even we could put a call to the OrderActivationService (domain) inside a suitably named method in the OrderService, keeping the logic in the domain but giving a simple single class interface to the GUI.
Compared To Service Layer
Evan Hoff did point out that this layer could be mistaken for a Service Layer, the links is here. As we discuss they are quite different as the coordination layer is not responsible for things like email/transactions/session management and is very closely linked to the domain itself. Not to say we might not also need a service layer at some stage, or that the coordination layer might not become one in time...
Due to the groups name change, the link to the discussion with Evan is now here
ReplyDelete