Exemple #1
0
            public BusTypeDataTableRow AddBusTypeDataTableRow(string BusTypeID, string BusTypeCode, string Description, string TotalSeats)
            {
                BusTypeDataTableRow rowBusTypeDataTableRow = ((BusTypeDataTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    BusTypeID,
                    BusTypeCode,
                    Description,
                    TotalSeats
                };
                rowBusTypeDataTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowBusTypeDataTableRow);
                return(rowBusTypeDataTableRow);
            }
Exemple #2
0
 public BusTypeDataTableRowChangeEvent(BusTypeDataTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveBusTypeDataTableRow(BusTypeDataTableRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddBusTypeDataTableRow(BusTypeDataTableRow row)
 {
     this.Rows.Add(row);
 }