public DepartmentsController(
     IDepartmentService departmentService,
     IDepartmentEmployeeService departmentEmployeeService,
     IDepartmentManagerService departmentManagerService)
 {
     _departmentService         = departmentService;
     _departmentEmployeeService = departmentEmployeeService;
     _departmentManagerService  = departmentManagerService;
 }
Ejemplo n.º 2
0
 public DepartmentEmployeeController(IDepartmentEmployeeService service)
 {
     this.service = service;
 }