コード例 #1
0
 public LeaveQuotaService(IDDService dDService, IRepository <LeaveQuotaYear> leaveQuotaYearReporsitory, IEmpSelectionService empSelectionService,
                          IGetSpecificEmployeeService getSpecificEmployeeService)
 {
     DDService = dDService;
     LeaveQuotaYearReporsitory  = leaveQuotaYearReporsitory;
     EmpSelectionService        = empSelectionService;
     GetSpecificEmployeeService = getSpecificEmployeeService;
 }
コード例 #2
0
 public DailyEditorController(IDDService dDService, IDailyEditorService dailyAttendanceEditorService, IEmpSelectionService empSelectionService,
                              IEntityService <DailyAttendance> dailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService)
 {
     DDService = dDService;
     DailyAttendanceEditorService = dailyAttendanceEditorService;
     EmpSelectionService          = empSelectionService;
     DailyAttendanceService       = dailyAttendanceService;
     GetSpecificEmployeeService   = getSpecificEmployeeService;
 }
コード例 #3
0
 public AttendanceDashboardController(IEntityService <VHR_EmployeeProfile> vHREmployeeProfileService,
                                      IEntityService <VAT_DailyAttendance> vATDailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService,
                                      IDDService dDService)
 {
     VHREmployeeProfileService  = vHREmployeeProfileService;
     VATDailyAttendanceService  = vATDailyAttendanceService;
     GetSpecificEmployeeService = getSpecificEmployeeService;
     DDService = dDService;
 }
コード例 #4
0
 public ERPMonthlyController(IGetSpecificEmployeeService getSpecificEmployeeService, IEntityService <VHR_EmployeeProfile> vHREmployeeProfileService
                             , IEntityService <MonthlyERPLWOP> monthlyERPLWOPService, IEntityService <MonthlyERP> monthlyERPService, IDDService dDService, IEntityService <VAT_MonthlySummary> vAT_MonthlySummaryService)
 {
     GetSpecificEmployeeService = getSpecificEmployeeService;
     VHREmployeeProfileService  = vHREmployeeProfileService;
     MonthlyERPLWOPService      = monthlyERPLWOPService;
     MonthlyERPService          = monthlyERPService;
     DDService = dDService;
     VAT_MonthlySummaryService = vAT_MonthlySummaryService;
 }
コード例 #5
0
 public EmployeeService(IUnitOfWork unitOfWork, IDDService dDService, IRepository <VHR_EmployeeProfile> vHREmployeeProfileReporsitory,
                        IRepository <Employee> employeeRepository, IRepository <EmployeeImage> employeeImageRepository, IGetSpecificEmployeeService getSpecificEmployeeService,
                        IRepository <EmployeeCrewChange> employeeCrewChangeRepository)
 {
     UnitOfWork                    = unitOfWork;
     DDService                     = dDService;
     EmployeeRepository            = employeeRepository;
     VHREmployeeProfileReporsitory = vHREmployeeProfileReporsitory;
     EmployeeImageRepository       = employeeImageRepository;
     GetSpecificEmployeeService    = getSpecificEmployeeService;
     EmployeeCrewChangeRepository  = employeeCrewChangeRepository;
 }
コード例 #6
0
 public OvertimeApprovalService(IDDService dDService, IRepository <MonthData> monthDataReporsitory, IEmpSelectionService empSelectionService,
                                IGetSpecificEmployeeService getSpecificEmployeeService, IRepository <OTApprovedHistory> oTApprovedHistoryReporsitory,
                                IRepository <LeaveCPLEmpBalance> leaveCPLBalanceRepository, IRepository <LeaveQuotaYear> leaveQuotaYearRepository)
 {
     DDService                    = dDService;
     MonthDataReporsitory         = monthDataReporsitory;
     EmpSelectionService          = empSelectionService;
     GetSpecificEmployeeService   = getSpecificEmployeeService;
     OTApprovedHistoryReporsitory = oTApprovedHistoryReporsitory;
     LeaveCPLBalanceRepository    = leaveCPLBalanceRepository;
     LeaveQuotaYearRepository     = leaveQuotaYearRepository;
 }
コード例 #7
0
 public DailyOvertimeController(IEntityService <DailyOvertime> dailyOvertimeService, IEntityService <VAT_DailyOvertime> vATDailyOvertimeService
                                , IDDService dDService, IEntityService <Employee> employeeService, IEntityService <DailyAttendance> dailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService,
                                IEntityService <LeaveCPLPool> dbLeavePoolCPL, IEntityService <LeaveCPLEmpBalance> dbLeaveBalanceCPL, IEntityService <LeaveQuotaYear> leaveQuotaYearService
                                , IEntityService <PayrollPeriod> payrollPeriodService)
 {
     VATDailyOvertimeService = vATDailyOvertimeService;
     DailyOvertimeService    = dailyOvertimeService;
     EmployeeService         = employeeService;
     DDService = dDService;
     DailyAttendanceService     = dailyAttendanceService;
     GetSpecificEmployeeService = getSpecificEmployeeService;
     LeaveCPLPoolService        = dbLeavePoolCPL;
     LeaveCPLEmpBalanceService  = dbLeaveBalanceCPL;
     LeaveQuotaYearService      = leaveQuotaYearService;
     PayrollPeriodService       = payrollPeriodService;
 }
コード例 #8
0
 public EmpSelectionService(IDDService dDService, IGetSpecificEmployeeService getSpecificEmployeeService)
 {
     DDService = dDService;
     GetSpecificEmployeeService = getSpecificEmployeeService;
 }
コード例 #9
0
        public AbsentNotificationController(IEntityService <DailyAttendance> dailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService)
        {
            DailyAttendanceService = dailyAttendanceService;

            GetSpecificEmployeeService = getSpecificEmployeeService;
        }