public EmployeeWorkingTime CreateObject(EmployeeWorkingTime employeeWorkingTime, IWorkingTimeService _workingTimeService, EmployeeService _employeeService) { // employeeWorkingTime.Errors = new Dictionary<String, String>(); return(_validator.ValidCreateObject(employeeWorkingTime, _workingTimeService, _employeeService) ? _repository.CreateObject(employeeWorkingTime) : employeeWorkingTime); }
public EmployeeWorkingTime UpdateObject(EmployeeWorkingTime employeeWorkingTime, IWorkingTimeService _workingTimeService, EmployeeService _employeeService) { return(employeeWorkingTime = _validator.ValidUpdateObject(employeeWorkingTime, _workingTimeService, _employeeService) ? _repository.UpdateObject(employeeWorkingTime) : employeeWorkingTime); }
public WorkingTimesController(IWorkingTimeService workingTimeService) { _workingTimeService = workingTimeService; }
public bool ValidUpdateObject(WorkingDay workingDay, IWorkingTimeService _workingTimeService) { workingDay.Errors.Clear(); ValidCreateObject(workingDay, _workingTimeService); return(isValid(workingDay)); }
public EmployeeWorkingTime VHasWorkingTime(EmployeeWorkingTime employeeWorkingTime, IWorkingTimeService _workingTimeService) { WorkingTime workingTime = _workingTimeService.GetObjectById(employeeWorkingTime.WorkingTimeId); if (workingTime == null) { // employeeWorkingTime.Errors.Add("WorkingTime", "Tidak valid"); } return(employeeWorkingTime); }
public bool ValidUpdateObject(EmployeeWorkingTime employeeWorkingTime, IWorkingTimeService _workingTimeService, EmployeeService _employeeService) { // employeeWorkingTime.Errors.Clear(); ValidCreateObject(employeeWorkingTime, _workingTimeService, _employeeService); return(isValid(employeeWorkingTime)); }
public WorkingDay UpdateObject(WorkingDay workingDay, IWorkingTimeService _workingTimeService) { return(workingDay = _validator.ValidUpdateObject(workingDay, _workingTimeService) ? _repository.UpdateObject(workingDay) : workingDay); }
public WorkingTimeController() { _workingTimeService = new WorkingTimeService(new WorkingTimeRepository(), new WorkingTimeValidator()); _workingDayService = new WorkingDayService(new WorkingDayRepository(), new WorkingDayValidator()); _employeeWorkingTimeService = new EmployeeWorkingTimeService(new EmployeeWorkingTimeRepository(), new EmployeeWorkingTimeValidator()); }
public WorkingDay CreateObject(WorkingDay workingDay, IWorkingTimeService _workingTimeService) { workingDay.Errors = new Dictionary <String, String>(); return(_validator.ValidCreateObject(workingDay, _workingTimeService) ? _repository.CreateObject(workingDay) : workingDay); }
public bool ValidUpdateObject(WorkingTime workingTime, IWorkingTimeService _workingTimeService) { // workingTime.Errors.Clear(); ValidCreateObject(workingTime, _workingTimeService); return(isValid(workingTime)); }
public bool ValidCreateObject(WorkingTime workingTime, IWorkingTimeService _workingTimeService) { VHasUniqueCode(workingTime, _workingTimeService); if (!isValid(workingTime)) { return(false); } VHasName(workingTime); if (!isValid(workingTime)) { return(false); } VHasMinCheckIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasCheckIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasMaxCheckIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasBreakOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasBreakIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasMinCheckOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasCheckOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasMaxCheckOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidCheckInTolerance(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidCheckOutTolerance(workingTime); if (!isValid(workingTime)) { return(false); } // Need to fix the day before further validation for correct range checking FixWorkingTimeRange(workingTime); VHasValidMinCheckIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidMaxCheckIn(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidMinCheckOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidMaxCheckOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidBreakOut(workingTime); if (!isValid(workingTime)) { return(false); } VHasValidBreakIn(workingTime); return(isValid(workingTime)); }
public SalaryProcessController() { _userAccountService = new UserAccountService(new UserAccountRepository(), new UserAccountValidator()); _companyInfoService = new CompanyInfoService(new CompanyInfoRepository(), new CompanyInfoValidator()); _branchOfficeService = new BranchOfficeService(new BranchOfficeRepository(), new BranchOfficeValidator()); _departmentService = new DepartmentService(new DepartmentRepository(), new DepartmentValidator()); _divisionService = new DivisionService(new DivisionRepository(), new DivisionValidator()); _titleInfoService = new TitleInfoService(new TitleInfoRepository(), new TitleInfoValidator()); _employeeService = new EmployeeService(new EmployeeRepository(), new EmployeeValidator()); _employeeEducationService = new EmployeeEducationService(new EmployeeEducationRepository(), new EmployeeEducationValidator()); _salaryItemService = new SalaryItemService(new SalaryItemRepository(), new SalaryItemValidator()); _formulaService = new FormulaService(new FormulaRepository(), new FormulaValidator()); _workingTimeService = new WorkingTimeService(new WorkingTimeRepository(), new WorkingTimeValidator()); _workingDayService = new WorkingDayService(new WorkingDayRepository(), new WorkingDayValidator()); _employeeWorkingTimeService = new EmployeeWorkingTimeService(new EmployeeWorkingTimeRepository(), new EmployeeWorkingTimeValidator()); _salaryStandardService = new SalaryStandardService(new SalaryStandardRepository(), new SalaryStandardValidator()); _salaryStandardDetailService = new SalaryStandardDetailService(new SalaryStandardDetailRepository(), new SalaryStandardDetailValidator()); _salaryEmployeeService = new SalaryEmployeeService(new SalaryEmployeeRepository(), new SalaryEmployeeValidator()); _salaryEmployeeDetailService = new SalaryEmployeeDetailService(new SalaryEmployeeDetailRepository(), new SalaryEmployeeDetailValidator()); _employeeAttendanceService = new EmployeeAttendanceService(new EmployeeAttendanceRepository(), new EmployeeAttendanceValidator()); //_employeeAttendanceDetailService = new EmployeeAttendanceDetailService(new EmployeeAttendanceDetailRepository(), new EmployeeAttendanceDetailValidator()); _salarySlipService = new SalarySlipService(new SalarySlipRepository(), new SalarySlipValidator()); _salarySlipDetailService = new SalarySlipDetailService(new SalarySlipDetailRepository(), new SalarySlipDetailValidator()); _employeeLeaveService = new EmployeeLeaveService(new EmployeeLeaveRepository(), new EmployeeLeaveValidator()); _generalLeaveService = new GeneralLeaveService(new GeneralLeaveRepository(), new GeneralLeaveValidator()); _spklService = new SPKLService(new SPKLRepository(), new SPKLValidator()); _ptkpService = new PTKPService(new PTKPRepository(), new PTKPValidator()); _pph21sptService = new PPH21SPTService(new PPH21SPTRepository(), new PPH21SPTValidator()); _otherExpenseService = new OtherExpenseService(new OtherExpenseRepository(), new OtherExpenseValidator()); _otherExpenseDetailService = new OtherExpenseDetailService(new OtherExpenseDetailRepository(), new OtherExpenseDetailValidator()); _otherIncomeService = new OtherIncomeService(new OtherIncomeRepository(), new OtherIncomeValidator()); _otherIncomeDetailService = new OtherIncomeDetailService(new OtherIncomeDetailRepository(), new OtherIncomeDetailValidator()); _thrService = new THRService(new THRRepository(), new THRValidator()); _thrDetailService = new THRDetailService(new THRDetailRepository(), new THRDetailValidator()); _slipGajiMiniService = new SlipGajiMiniService(new SlipGajiMiniRepository(), new SlipGajiMiniValidator()); _slipGajiDetailService = new SlipGajiDetailService(new SlipGajiDetailRepository(), new SlipGajiDetailValidator()); _slipGajiDetail1Service = new SlipGajiDetail1Service(new SlipGajiDetail1Repository(), new SlipGajiDetail1Validator()); _slipGajiDetail2AService = new SlipGajiDetail2AService(new SlipGajiDetail2ARepository(), new SlipGajiDetail2AValidator()); _salaryProcessService = new SalaryProcessService(new SalaryProcessValidator() { _employeeAttendanceService = _employeeAttendanceService, _employeeLeaveService = _employeeLeaveService, _employeeService = _employeeService, _employeeWorkingTimeService = _employeeWorkingTimeService, _formulaService = _formulaService, _generalLeaveService = _generalLeaveService, _spklService = _spklService, _ptkpService = _ptkpService, _pph21sptService = _pph21sptService, _otherExpenseService = _otherExpenseService, _otherExpenseDetailService = _otherExpenseDetailService, _otherIncomeService = _otherIncomeService, _otherIncomeDetailService = _otherIncomeDetailService, _thrService = _thrService, _thrDetailService = _thrDetailService, _workingDayService = _workingDayService, _workingTimeService = _workingTimeService, _salaryEmployeeDetailService = _salaryEmployeeDetailService, _salaryEmployeeService = _salaryEmployeeService, _salaryItemService = _salaryItemService, _salarySlipDetailService = _salarySlipDetailService, _salarySlipService = _salarySlipService, _slipGajiDetail1Service = _slipGajiDetail1Service, _slipGajiDetail2AService = _slipGajiDetail2AService, _slipGajiDetailService = _slipGajiDetailService, _slipGajiMiniService = _slipGajiMiniService, }); }
public MonthlyTallySheetForm(IEmployeeService employeeService, IWorkingTimeService workingTimeService) { _employeeService = employeeService; _workingTimeService = workingTimeService; InitializeComponent(); }