public DepartmentsController(IDepartmentService departmentService, IDepartmentTypeService departmentTypeService)
 {
     this.departmentService     = departmentService;
     this.departmentTypeService = departmentTypeService;
 }
 public DepartmentTypesController(IDepartmentTypeService departmentTypeService)
 {
     _departmentTypeService = departmentTypeService;
 }