public DelegationService(InventoryManagementSystemContext db, EmployeeService empService, EmployeeTypeService etService)
 {
     this.db         = db;
     this.empService = empService;
     this.etService  = etService;
 }
 public EmployeeService(InventoryManagementSystemContext db, EmployeeTypeService etService, DepartmentService dService)
 {
     this.db        = db;
     this.etService = etService;
     this.dService  = dService;
 }