public CashBookLookupRow AddCashBookLookupRow(System.Guid IID, string ReceiptVoucher, decimal Deposit, decimal Withdraw, System.DateTime TrDate, string Description, int Total)
            {
                CashBookLookupRow rowCashBookLookupRow = ((CashBookLookupRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    IID,
                    ReceiptVoucher,
                    Deposit,
                    Withdraw,
                    TrDate,
                    Description,
                    Total
                };
                rowCashBookLookupRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCashBookLookupRow);
                return(rowCashBookLookupRow);
            }
 public CashBookLookupRowChangeEvent(CashBookLookupRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveCashBookLookupRow(CashBookLookupRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddCashBookLookupRow(CashBookLookupRow row)
 {
     this.Rows.Add(row);
 }