public _GetAccountRow Add_GetAccountRow(int CustomerID, string Description, System.Decimal Balance, System.DateTime LastTransactionDate, string Type, System.Decimal InterestRate, System.Decimal MinimumBalance)
            {
                _GetAccountRow row_GetAccountRow = ((_GetAccountRow)(this.NewRow()));

                row_GetAccountRow.ItemArray = new object[] {
                    null,
                    CustomerID,
                    Description,
                    Balance,
                    LastTransactionDate,
                    Type,
                    InterestRate,
                    MinimumBalance
                };
                this.Rows.Add(row_GetAccountRow);
                return(row_GetAccountRow);
            }
 public _GetAccountRowChangeEvent(_GetAccountRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Remove_GetAccountRow(_GetAccountRow row)
 {
     this.Rows.Remove(row);
 }
 public void Add_GetAccountRow(_GetAccountRow row)
 {
     this.Rows.Add(row);
 }
 public _GetAccountRowChangeEvent(_GetAccountRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void Remove_GetAccountRow(_GetAccountRow row) {
     this.Rows.Remove(row);
 }
 public void Add_GetAccountRow(_GetAccountRow row) {
     this.Rows.Add(row);
 }