public EmployeesRepository(EmployeeManagementDbContext context) : base(context)
 {
 }
Esempio n. 2
0
 public Repository(EmployeeManagementDbContext context)
 {
     _context  = context;
     _entities = context.Set <TEntity>();
 }