public LeaveQuotaService(IDDService dDService, IRepository <LeaveQuotaYear> leaveQuotaYearReporsitory, IEmpSelectionService empSelectionService, IGetSpecificEmployeeService getSpecificEmployeeService) { DDService = dDService; LeaveQuotaYearReporsitory = leaveQuotaYearReporsitory; EmpSelectionService = empSelectionService; GetSpecificEmployeeService = getSpecificEmployeeService; }
public DailyEditorController(IDDService dDService, IDailyEditorService dailyAttendanceEditorService, IEmpSelectionService empSelectionService, IEntityService <DailyAttendance> dailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService) { DDService = dDService; DailyAttendanceEditorService = dailyAttendanceEditorService; EmpSelectionService = empSelectionService; DailyAttendanceService = dailyAttendanceService; GetSpecificEmployeeService = getSpecificEmployeeService; }
public JobCardService(IDDService dDService, IEmpSelectionService empSelectionService, IRepository <VAT_JobCardApplication> vATJobCardApplicationRepository , IRepository <JobCardApp> jobCardAppRepository, IUnitOfWork unitOfWork, IEntityService <PayrollPeriod> payrollPeriodService , IEntityService <Shift> shiftService) { DDService = dDService; EmpSelectionService = empSelectionService; VATJobCardApplicationRepository = vATJobCardApplicationRepository; JobCardAppRepository = jobCardAppRepository; PayrollPeriodService = payrollPeriodService; ShiftService = shiftService; UnitOfWork = unitOfWork; }
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; }
public DailyEditorService(IDDService dDService, IEmpSelectionService empSelectionService, IRepository <DailyAttendance> dailyAttendanceService, IRepository <DailyAttendanceEdit> dailyAttendanceEditService, IRepository <ShiftChangedEmp> shiftChangedEmpService, IRepository <Shift> shiftService, IRepository <ShiftChanged> shiftChangedService) { DDService = dDService; EmpSelectionService = empSelectionService; DailyAttendanceRepo = dailyAttendanceService; DailyAttendanceEditRepo = dailyAttendanceEditService; ShiftChangedEmpRepo = shiftChangedEmpService; ShiftRepo = shiftService; ShiftChangedRepo = shiftChangedService; }
public OvertimeEncashableService(IDDService dDService, IRepository <MonthData> monthDataReporsitory, IEmpSelectionService empSelectionService) { DDService = dDService; MonthDataReporsitory = monthDataReporsitory; EmpSelectionService = empSelectionService; }
public LeaveCFService(IDDService dDService, IRepository <LeaveCarryForward> leaveCarryForwardReporsitory, IEmpSelectionService empSelectionService) { DDService = dDService; LeaveCarryForwardReporsitory = leaveCarryForwardReporsitory; EmpSelectionService = empSelectionService; }
public MonthlyEditorService(IDDService dDService, IEmpSelectionService empSelectionService, IRepository <MonthData> monthlyDataRepository) { DDService = dDService; EmpSelectionService = empSelectionService; MonthlyDataRepository = monthlyDataRepository; }
public EmpSelectionController(IEmpSelectionService empSelectionService, IDDService dDService) { EmpSelectionService = empSelectionService; DDService = dDService; }