public EmployeeRepository(EmployeeSkillsDBContext Context) : base(Context)
 {
     this._context = Context;
     _repo         = new BaseInstanceRepository <Employee>(Context);
 }
 //private EmployeeSkillsDBContext _context;
 public CategoryRepository(EmployeeSkillsDBContext Context) : base(Context)
 {
     _context = Context;
     _repo    = new BaseInstanceRepository <Category>(Context);
 }
Exemple #3
0
 //private EmployeeSkillsDBContext _context;
 public DepartmentRepository(EmployeeSkillsDBContext Context) : base(Context)
 {
     this._context = Context;
     _repo         = new BaseInstanceRepository <Department>(Context);
 }