public OrganizationalUnitController(IEntityService <OrganizationalUnit> organizationalunitService, IEntityService <Employee> employeeService, IDDService dDService, IEntityService <VHR_OrganizationalUnit> vHROrganizationalUnit) { OrganizationalUnitService = organizationalunitService; EmployeeService = employeeService; DDService = dDService; VHROrganizationalUnit = vHROrganizationalUnit; }
public LocationController(IEntityService <Location> locationService, IEntityService <Employee> employeeService, IDDService dDService, IEntityService <VHR_Location> vHRLocation) { LocationService = locationService; EmployeeService = employeeService; DDService = dDService; VHRLocation = vHRLocation; }
public ServiceLogController(IEntityService <VAT_ServiceLog> serviceLogyService, IEntityService <DeviceData> deviceDataService, IDDService dDService) { ServiceLogService = serviceLogyService; DeviceDataService = deviceDataService; DDService = dDService; }
public ReaderController(IEntityService <Reader> readerServiceService, IEntityService <DeviceData> deviceDataService, IDDService dDService, IEntityService <VAT_Reader> vATReaderService) { VATReaderService = vATReaderService; ReaderService = readerServiceService; DeviceDataService = deviceDataService; DDService = dDService; }
public CrewController(IEntityService <Crew> crewService, IEntityService <Employee> employeeService, IDDService dDService, IEntityService <VHR_Crew> vHRCrewService) { CrewService = crewService; EmployeeService = employeeService; DDService = dDService; VHRCrewService = vHRCrewService; }
public JTCommonController(IEntityService <Crew> crewService, IEntityService <Employee> employeeService, IDDService dDService , IEntityService <JTCommon> jTCommonService) { JTCommonService = jTCommonService; EmployeeService = employeeService; DDService = dDService; }
public DesignationController(IEntityService <Designation> designationService, IEntityService <Employee> employeeService, IDDService dDService, IEntityService <VHR_Designation> vHRDesignationService) { DesignationService = designationService; EmployeeService = employeeService; VHRDesignationService = vHRDesignationService; DDService = dDService; }
public DDController(IEntityService <VHR_EmployeeProfile> employeeService, IDDService ddService, IEntityService <LeaveQuotaYear> leaveQuotaYearService) { EmployeeService = employeeService; LeaveQuotaYearService = leaveQuotaYearService; DDService = ddService; }
public ShiftController(IEntityService <Shift> shiftService, IEntityService <Employee> employeeService, IDDService dDService, IEntityService <VAT_Shift> vATShiftService) { ShiftService = shiftService; DDService = dDService; VATShiftService = vATShiftService; EmployeeService = employeeService; }
public RosterService(IDDService dDService, IEntityService <RosterApplication> rosterApplicationService, IEntityService <RosterDetail> rosterDetailService, IEntityService <VAT_RosterApplication> vATRosterApplicationService) { DDService = dDService; RosterApplicationService = rosterApplicationService; RosterDetailService = rosterDetailService; VATRosterApplicationService = vATRosterApplicationService; }
public UserRoleService(IUnitOfWork unitOfWork, IDDService dDService, IRepository <AppUserRole> appUserRoleRepository, IRepository <AppUserTM> appUserTMRepository) { UnitOfWork = unitOfWork; DDService = dDService; AppUserRoleRepository = appUserRoleRepository; AppUserTMRepository = appUserTMRepository; }
public FinalSettlementService(IUnitOfWork unitOfWork, IDDService dDService, IRepository <FinalSettlement> finalSettlementRepository , IRepository <FinalSettelmentFlow> finalSettelmentFlowRepository) { UnitOfWork = unitOfWork; DDService = dDService; FinalSettlementRepository = finalSettlementRepository; FinalSettelmentFlowRepository = finalSettelmentFlowRepository; }
public EmployeeCrewHistoryController(IDDService dDService, IEntityService <VAT_LeaveApplication> vATLeaveApplicationService, IEntityService <VHR_EmployeeCrewChange> vHREmployeeCrewChangeService, IEntityService <EmployeeCrewChange> employeeCrewChangeService) { EmployeeCrewChangeService = employeeCrewChangeService; VHREmployeeCrewChangeService = vHREmployeeCrewChangeService; DDService = dDService; }
public LeaveQuotaService(IDDService dDService, IRepository <LeaveQuotaYear> leaveQuotaYearReporsitory, IEmpSelectionService empSelectionService, IGetSpecificEmployeeService getSpecificEmployeeService) { DDService = dDService; LeaveQuotaYearReporsitory = leaveQuotaYearReporsitory; EmpSelectionService = empSelectionService; GetSpecificEmployeeService = getSpecificEmployeeService; }
public CreateDomainProject( ActionExecution actionExecution, IDDService dDService, IFileService fileService) : base(actionExecution, ActionName, ActionDescription, DeployManager.Phases.EmptyProject, Positions.Second, Positions.Third) { DDService = dDService ?? throw new ArgumentNullException(nameof(dDService)); FileService = fileService ?? throw new ArgumentNullException(nameof(fileService)); }
public EmployeeShiftChangeController(IEntityService <ShiftChangedEmp> shiftchangedempService, IEntityService <DeviceData> deviceDataService, IDDService dDService, IEntityService <Employee> employeeService) { ShiftChangedEmpService = shiftchangedempService; DeviceDataService = deviceDataService; EmployeeService = employeeService; DDService = dDService; }
public UserService(IUnitOfWork unitOfWork, IDDService dDService, IRepository <AppUser> appUserRepository, IRepository <AppUserTM> appUserTMRepository, IRepository <AppUserLocation> appUserLocationRepository) { UnitOfWork = unitOfWork; DDService = dDService; AppUserRepository = appUserRepository; AppUserTMRepository = appUserTMRepository; AppUserLocationRepository = appUserLocationRepository; }
public AttReportingService(IDDService dDService, IRepository <LeaveQuotaYear> leaveQuotaYearRepository, IRepository <LeaveData> leaveDataRepository, IRepository <DailyAttendance> dailyAttendanceRepository, IRepository <FinancialYear> financialYearRepository) { DDService = dDService; LeaveQuotaYearRepository = leaveQuotaYearRepository; LeaveDataRepository = leaveDataRepository; DailyAttendanceRepository = dailyAttendanceRepository; FinancialYearRepository = financialYearRepository; }
public MonthlyEditorController(IDDService dDService, IMonthlyEditorService monthlyEditorService, IRepository <VAT_MonthlySummary> monthlyDataRepository, IRepository <MonthData> monthDataRepository, IRepository <MonthDataEdit> monthDataEditRepository) { DDService = dDService; MonthlyEditorService = monthlyEditorService; VMonthlyDataRepository = monthlyDataRepository; MonthDataRepository = monthDataRepository; MonthDataEditRepository = monthDataEditRepository; }
public AttendanceDashboardController(IEntityService <VHR_EmployeeProfile> vHREmployeeProfileService, IEntityService <VAT_DailyAttendance> vATDailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService, IDDService dDService) { VHREmployeeProfileService = vHREmployeeProfileService; VATDailyAttendanceService = vATDailyAttendanceService; GetSpecificEmployeeService = getSpecificEmployeeService; DDService = dDService; }
public LeaveQuotaController(IDDService dDService, ILeaveQuotaService leaveQuotaService, IEntityService <LeaveCPLEmpBalance> leaveCPLBalanceService, IEntityService <LeaveQuotaYear> leaveQuotaYearService) { DDService = dDService; LeaveQuotaService = leaveQuotaService; LeaveCPLBalanceService = leaveCPLBalanceService; LeaveQuotaYearService = leaveQuotaYearService; // GET: Attendance/JobCard }
public DailyEditorController(IDDService dDService, IDailyEditorService dailyAttendanceEditorService, IEmpSelectionService empSelectionService, IEntityService <DailyAttendance> dailyAttendanceService, IGetSpecificEmployeeService getSpecificEmployeeService) { DDService = dDService; DailyAttendanceEditorService = dailyAttendanceEditorService; EmpSelectionService = empSelectionService; DailyAttendanceService = dailyAttendanceService; GetSpecificEmployeeService = getSpecificEmployeeService; }
public RosterController(IDDService dDService, IEntityService <RosterApplication> rosterApplicationService, IEntityService <RosterDetail> rosterDetailService, IRosterService rosterService, IEntityService <VAT_RosterApplication> vATRosterApplicationService, IEntityService <Shift> shiftService) { DDService = dDService; RosterApplicationService = rosterApplicationService; RosterDetailService = rosterDetailService; RosterService = rosterService; VATRosterApplicationService = vATRosterApplicationService; ShiftService = shiftService; }
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; }
//IRMSRepository<AreaOfInterest> AreaOfInterestService; public HomeController(IEntityService <VHR_AppUser> vHRAppUserService, IEntityService <AppUserLocation> appUserLocationService, IEntityService <VHR_EmployeeProfile> vHREmployeeProfileService, IDDService dDService, IEntityService <AppUser> appUserService ) { VHRAppUserService = vHRAppUserService; AppUserService = appUserService; AppUserLocationService = appUserLocationService; VHREmployeeProfileService = vHREmployeeProfileService; DDService = dDService; }
public ESSPCommonController(IJobCardESSPService jobCardESSPService, IEntityService <JobCardApp> jobcardappService, IDDService dDService, IEntityService <JobCardDetail> jobcarddetailservice , IEntityService <VEP_JobCardApplication> vEPJobCardApplicationService, IEntityService <VAT_LeaveApplication> vatLeaveApplicationService , IRepository <JobCardAppFlow> jobCardAppFlowService, ILeavesESSPService leaveApplicationESSPService) { JobCardESSPService = jobCardESSPService; VEPJobCardApplicationService = vEPJobCardApplicationService; VATLeaveApplicationService = vatLeaveApplicationService; JobCardAppFlowService = jobCardAppFlowService; LeaveApplicationESSPService = leaveApplicationESSPService; DDService = dDService; }
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 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 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; }
public NotificationController(IEntityService <VHR_EmployeeProfile> vHREmployeeService, IDDService dDService, IEntityService <VHR_OrganizationalUnit> vHROrganizationalUnitService, IEntityService <VHR_JobTitle> vHRJobTitleService, IEntityService <Notification> notificationService, IEntityService <LeaveQuotaYear> leaveQuotaYearService ) { VHREmployeeService = vHREmployeeService; DDService = dDService; VHROrganizationalUnitService = vHROrganizationalUnitService; VHRJobTitleService = vHRJobTitleService; NotificationService = notificationService; LeaveQuotaYearService = leaveQuotaYearService; }