Exemplo n.º 1
0
 public UnitOfWork(RpAppDbContext context)
 {
     _context    = context;
     Students    = new StudentRepository(_context);
     Departments = new DepartmentRepository(_context);
 }
 public StudentRepository(RpAppDbContext context)
     : base(context)
 {
 }