All Questions
1 question
9
votes
4
answers
14k
views
ID properties on Domain objects in DDD
In my domain I have an Account object.
e.g.
class Account
{
public string Number;
public string SortCode;
}
Within the context of DDD, should this account object have an ID property? The ID ...