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