4
votes
4answers
602 views
Constructing a Domain Object from multiple DTOs
Suppose you have the canonical Customer domain object. You have three different screens on which Customer is displayed: External Admin, Internal Admin, and Update Account.
Suppose further that each …
2
votes
2answers
61 views
Is a “domain object” any class that represents business rules?
I came across the term "domain object" and found a couple of definitions on Google but I just want to verify that my understanding is correct.
Is this simply any class that represents business rules …
2
votes
5answers
479 views
How do you use Intefaces with the Factory Pattern in Domain-Driven Design?
Does it make sense to use interfaces for your domain object factories by default, or should interfaces be reserved for the factory classes only when you need them?
public IUserFactory
{
User …
