public AttendanceCategoryController(IAttendanceCategoryService attendanceCategoryService,
                                     IAttendanceCategoryPropertyBindService attendanceCategoryPropertyBindService,
                                     IAttendanceCategoryPropertySearchService attendanceCategoryPropertySearchService,
                                     IAttendancePropertyService attendancePropertyService
                                     )
 {
     _attendanceCategoryService               = attendanceCategoryService;
     _attendanceCategoryPropertyBindService   = attendanceCategoryPropertyBindService;
     _attendanceCategoryPropertySearchService = attendanceCategoryPropertySearchService;
     _attendancePropertyService               = attendancePropertyService;
 }
Esempio n. 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;
 }