public employee_remittanceRow Addemployee_remittanceRow(long remittance_id, string remittance_date, short pay_month, short pay_balance, decimal amount_paid, decimal amount_balance)
            {
                employee_remittanceRow rowemployee_remittanceRow = ((employee_remittanceRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    remittance_id,
                    remittance_date,
                    pay_month,
                    pay_balance,
                    amount_paid,
                    amount_balance
                };
                rowemployee_remittanceRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowemployee_remittanceRow);
                return(rowemployee_remittanceRow);
            }
 public employee_remittanceRowChangeEvent(employee_remittanceRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Removeemployee_remittanceRow(employee_remittanceRow row)
 {
     this.Rows.Remove(row);
 }
 public void Addemployee_remittanceRow(employee_remittanceRow row)
 {
     this.Rows.Add(row);
 }