public SqlEmployeeRepository(EmployeeDbContext context)
 {
     _context = context;
 }
 public GenericRepository(EmployeeDbContext context)
 {
     this.context = context;
     table        = context.Set <T>();
 }
 public EmployeeRepository(EmployeeDbContext context)
 {
     this.context = context;
 }