Beispiel #1
0
 public UnitOfWork(TodoContext context)
 {
     _context  = context;
     Customers = new CustomerRepository(_context);
     Students  = new StudentRepository(_context);
 }
Beispiel #2
0
 public UnitOfWork(CustomerDbEntities context)
 {
     _context  = context;
     Customers = new CustomerRepository(_context);
 }