Tagged Questions
3
votes
5answers
1k 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 ...
0
votes
2answers
240 views
Domain Objects and Value Objects - are they equal?
By looking to the example of a Domain Object into Zend Quickstart tutorial, and other examples considering a DAO/VO patterns, they both seem to be very similar.
Can we deduce that to say "Value ...