Beispiel #1
0
 public EmployeeController(IEmployeeService EmployeeService,
                           IEmployeeSearchService EmployeeSearchService,
                           IEmployeeCategoryService EmployeeCategoryService,
                           IEmployeePropertyService EmployeePropertyService,
                           IExcelDataHaveColumnExporter dataExporter,
                           ICommandPipeProvider commandPipeProvider)
 {
     _employeeService         = EmployeeService;
     _employeeSearchService   = EmployeeSearchService;
     _employeeCategoryService = EmployeeCategoryService;
     _dataExporter            = dataExporter;
     _employeePropertyService = EmployeePropertyService;
     base.CommandPipeProvider = commandPipeProvider;
 }
Beispiel #2
0
 public AttendanceController(IAttendanceService AttendanceService,
                             IAttendanceSearchService AttendanceSearchService,
                             IAttendanceCategoryService AttendanceCategoryService,
                             IAttendancePropertyService AttendancePropertyService,
                             IExcelDataHaveColumnExporter dataExporter,
                             IEmployeeSearchService employeeSearchService,
                             IAttendanceWrapper[] attendanceWrappers,
                             ICommandPipeProvider commandPipeProvider)
 {
     _attendanceService         = AttendanceService;
     _attendanceSearchService   = AttendanceSearchService;
     _attendanceCategoryService = AttendanceCategoryService;
     _dataExporter = dataExporter;
     _attendancePropertyService = AttendancePropertyService;
     _employeeSearchService     = employeeSearchService;
     _attendanceWrappers        = attendanceWrappers;
     base.CommandPipeProvider   = commandPipeProvider;
 }
 public EmployeeController(IEmployeeService employeeService, IEmployeeSearchService searchService)
 {
     this.employeeService = employeeService;
     this.searchService   = searchService;
 }
Beispiel #4
0
 public SearchController(IEmployeeSearchService employeeService)
 {
     _employeeService = employeeService;
 }
 public AttendanceEmployeeWrapper(IEmployeeSearchService employeeSearchService)
 {
     _employeeSearchService = employeeSearchService;
 }