Exemple #1
0
 public LocationEmployeeController(ILocationEmployeeService locationEmployeeService,
                                   IEmployeeService employeeService,
                                   ILocationService locationService,
                                   ITimekeepingEMPService timekeepingEMPService,
                                   IPositionService positionService)
 {
     this._locationEmployeeService = locationEmployeeService;
     this._employeeService         = employeeService;
     this._locationService         = locationService;
     this._timekeepingEMPService   = timekeepingEMPService;
     this._positionService         = positionService;
 }
Exemple #2
0
 public TimekeepingEMPController(ITimekeepingEMPService timekeepingEMPService,
                                 IDepartmentService departmentService)
 {
     this._timekeepingEMPService = timekeepingEMPService;
     this._departmentService     = departmentService;
 }