public _GetTransactionLogRow Add_GetTransactionLogRow(System.DateTime TransactionDate, int AccountID, System.Decimal Amount, string Description, string Type)
            {
                _GetTransactionLogRow row_GetTransactionLogRow = ((_GetTransactionLogRow)(this.NewRow()));

                row_GetTransactionLogRow.ItemArray = new object[] {
                    null,
                    TransactionDate,
                    AccountID,
                    Amount,
                    Description,
                    Type
                };
                this.Rows.Add(row_GetTransactionLogRow);
                return(row_GetTransactionLogRow);
            }
 public _GetTransactionLogRowChangeEvent(_GetTransactionLogRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Remove_GetTransactionLogRow(_GetTransactionLogRow row)
 {
     this.Rows.Remove(row);
 }
 public void Add_GetTransactionLogRow(_GetTransactionLogRow row)
 {
     this.Rows.Add(row);
 }
 public _GetTransactionLogRowChangeEvent(_GetTransactionLogRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void Remove_GetTransactionLogRow(_GetTransactionLogRow row) {
     this.Rows.Remove(row);
 }
 public void Add_GetTransactionLogRow(_GetTransactionLogRow row) {
     this.Rows.Add(row);
 }