What are DDD recommendations for inter-domain referencing design?
Should I provide to my "first domain" references to the second domain (and its repository) or there it is better to created upper-level "inter-domain" business service? O
P.S. Just want to cross this smooth water, but can't find anything useful to read in the Internet, and start thinking that for this kind of things exist better term than "inter-domain referencing"... Am I right?
DETAILS:
- I have two models/business services (designed as POCO type libraries, where entities resolved using IRepository/EF4) in two different assemblies.
- Semantically first domain is CRM with sell/maintenance process, second domain is metadata that describes selling goods. So there I even could see the "hierarchy" between those two domains.
- Actually each model is effective ORM (Object-Relational Mapping) tool to one and the same DB but to different table sets.
- There are some inter-domain activities e.g. validations.
- I could develop all those inter-domain validations on the "application layer", but they are clear business rules and should be located on the "business service layer " (also I want to have still effective ORM)...
From developer's point of view I have two clear possibilities. But the problem is to understand what kind of Business Service I have when I compose business logic from two different domains.