예제 #1
0
 public frmPayroll(int encoderId, frmPayrollListcs pFrmPayrollListcs)
 {
     InitializeComponent();
     this.encoderID         = encoderId;
     this.pFrmPayrollListcs = pFrmPayrollListcs;
     DefaultDatesInitializer();
 }
예제 #2
0
 public frmCashAdvancecs(int employeeId, frmPayrollListcs pFrmPayrollListcs, int selectedEmpId)
 {
     InitializeComponent();
     this.employeeId        = employeeId;
     this.pFrmPayrollListcs = pFrmPayrollListcs;
     this.selectedEmpId     = selectedEmpId;
 }
예제 #3
0
 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;
 }
예제 #4
0
        private void payrollBtn_Click(object sender, EventArgs e)
        {
            frmPayrollListcs payroll = new frmPayrollListcs(this.employeeId);

            payroll.ShowDialog();
        }