Ejemplo n.º 1
0
 public EmployeeAttendanceController(IEmployeeService employeeService, IEmploymentHistoryService employmentHistoryService, IEmployeeAttendanceService employeeAttendanceService, ISchoolService schoolService, IDistrictService districtService, IRoleSubModuleItemService roleSubModuleItemService, IEmployeeAttendanceSummaryService employeeAttendanceSummaryService)
 {
     this.employeeService                  = employeeService;
     this.employmentHistoryService         = employmentHistoryService;
     this.employeeAttendanceService        = employeeAttendanceService;
     this.schoolService                    = schoolService;
     this.districtService                  = districtService;
     this.roleSubModuleItemService         = roleSubModuleItemService;
     this.employeeAttendanceSummaryService = employeeAttendanceSummaryService;
 }
Ejemplo n.º 2
0
 public EmploymentHistoryController(IEmploymentHistoryService employmentHistoryService)
 {
     this.employmentHistoryService = employmentHistoryService;
 }
Ejemplo n.º 3
0
 public EmploymentHistoryController(IEmploymentHistoryService employmentHistoryService, ISubModuleItemService subModuleItemService, IRoleSubModuleItemService roleSubModuleItemService)
 {
     this.employmentHistoryService = employmentHistoryService;
     this.subModuleItemService     = subModuleItemService;
     this.roleSubModuleItemService = roleSubModuleItemService;
 }