Ejemplo n.º 1
0
 public UnitOfWork(MyPetsContext context)
 {
     _context               = context;
     Investigations         = new InvestigationDao(_context);
     InvestigationDocuments = new InvestigationDocumentDao(_context);
     InvestigationPersons   = new InvestigationPersonDao(_context);
     InvestigationToInvestigationDocuments = new InvestigationToInvestigationDocumentDao(_context);
     InvestigationToRounds = new InvestigationToRoundDao(_context);
     Persons = new PersonDao(_context);
     Rounds  = new RoundDao(_context);
     RoundToInvestigationDocuments = new RoundToInvestigationDocumentDao(_context);
 }
Ejemplo n.º 2
0
 public RoundDao(MyPetsContext context) : base(context)
 {
 }
Ejemplo n.º 3
0
 public PersonDao(MyPetsContext context) : base(context)
 {
 }
 public RoundToInvestigationDocumentDao(MyPetsContext context) : base(context)
 {
 }
Ejemplo n.º 5
0
 public InvestigationDao(MyPetsContext context) : base(context)
 {
 }