public frmPayroll(int encoderId, frmPayrollListcs pFrmPayrollListcs) { InitializeComponent(); this.encoderID = encoderId; this.pFrmPayrollListcs = pFrmPayrollListcs; DefaultDatesInitializer(); }
public frmCashAdvancecs(int employeeId, frmPayrollListcs pFrmPayrollListcs, int selectedEmpId) { InitializeComponent(); this.employeeId = employeeId; this.pFrmPayrollListcs = pFrmPayrollListcs; this.selectedEmpId = selectedEmpId; }
public frmPayrollEditPay(int encoderID, int selectedEmpID, int selectedPayrollID, String selectedEmpName, DateTime DateStart, DateTime DateEnd, frmPayrollListcs pPayrollForm, double cashAdvVal, double philHealth, double sss, int philHealthID, int sssID) { InitializeComponent(); this.encoderID = encoderID; this.selectedEmpID = selectedEmpID; this.selectedPayrollID = selectedPayrollID; this.selectedEmpName = selectedEmpName; this.DateStart = DateStart; this.DateEnd = DateEnd; this.pPayrollForm = pPayrollForm; this.cashAdvVal = cashAdvVal; this.philHealth = philHealth; this.sss = sss; this.philHealthID = philHealthID; this.sssID = sssID; }
private void payrollBtn_Click(object sender, EventArgs e) { frmPayrollListcs payroll = new frmPayrollListcs(this.employeeId); payroll.ShowDialog(); }