public DBServicesFacade(EmployeesInformationManagerContext context)
 {
     this.employeeServices      = new EmployeeServices(context);
     this.skillServices         = new SkillServices(context);
     this.employeeSkillServices = new EmployeeSkillServices(context);
 }
 public EmployeeSkillRepository(EmployeesInformationManagerContext context)
 {
     this.context = context;
 }
 public EmployeeServices(EmployeesInformationManagerContext context)
     : base(context)
 {
 }
Beispiel #4
0
 public EmployeeController(EmployeesInformationManagerContext context)
 {
     _db = new DBServicesFacade(context);
 }