Ejemplo n.º 1
0
 public HrEmployeeController(IHrEmployeeService hrEmployeeService,
                             IHrDepartmentService hrDepartmentService, IHrPositionService hrPositionService)
 {
     _hrEmployeeService   = hrEmployeeService;
     _hrDepartmentService = hrDepartmentService;
     _hrPositionService   = hrPositionService;
 }
Ejemplo n.º 2
0
 public HrDepartmentController(IHrDepartmentService hrDepartmentService)
 {
     _hrDepartmentService = hrDepartmentService;
 }