Exemple #1
0
 public EmployeeRepository(EmContext context) : base(context)
 {
 }
Exemple #2
0
 public GenericRepository(EmContext context)
 {
     _context = context;
     DbSet    = _context.Set <TEntity>();
 }