Needs opinions based on design guidelines .

Posted by Abu Hamzah on Stack Overflow See other posts from Stack Overflow or by Abu Hamzah
Published on 2010-05-11T14:13:35Z Indexed on 2010/05/11 14:54 UTC
Read the original article Hit count: 177

i am in the process of desigining my domain model and i know its very hard to suggest without knowledge of domain but what i am asking is how to implement or the best way of implementing the baseclass in my domain model.

here are few classes:

PartialPerson.cs Facilities.cs Visit.cs EntryPoint.cs etc....

my baseclass looks like this:

  public abstract class BaseClass
    {
        public int InfoId { get; }
        public int PersonId { get; }
    }

here is what i am confused and need help.

how do i implement the above baseclass? in the PartialPerson,Facilities,Visit...

© Stack Overflow or respective owner

Related posts about domain-driven-design

Related posts about architecture