public TestReport02Controller(IEmployeeService employeeService, IReport02Service service, ISalaryHistoryService salaryHistoryservice, ISalaryLevelService salaryLevelService)
 {
     this._employeeService      = employeeService;
     this._service              = service;
     this._salaryHistoryservice = salaryHistoryservice;
     this._salaryLevelService   = salaryLevelService;
 }
 public TimekeepingController(ITimekeepingService service, IDepartmentService departmentService, IEmployeeService employee, ISalaryHistoryService salaryHistoryService, ITimeAttendanceTypeService timeAttendanceType)
 {
     this.service  = service;
     this.employee = employee;
     this._salaryHistoryService = salaryHistoryService;
     this.timeAttendanceType    = timeAttendanceType;
     this._departmentService    = departmentService;
 }
Beispiel #3
0
 public SalaryHistoryController(ISalaryHistoryService service,
                                IEmployeeService employee,
                                IWorkTitleDetailService worktitledetailService,
                                ISalaryLevelService salarylevelService,
                                IContractTypeService contractTypeService,
                                IDepartmentService departmentService)
 {
     this.service  = service;
     this.employee = employee;
     this._worktitledetailService = worktitledetailService;
     this._salarylevelService     = salarylevelService;
     this._departmentService      = departmentService;
     this.contractTypeService     = contractTypeService;
 }
 public AccountController(IAuthenticateService authenticateService, IEmployeeService employeeService, ISalaryHistoryService salaryHistoryService)
 {
     this._authenticateService  = authenticateService;
     this._employeeService      = employeeService;
     this._salaryHistoryService = salaryHistoryService;
 }