Пример #1
0
            public ShipperTypesTableRow AddShipperTypesTableRow(string ShipperTypeID, string ShipperTypeName)
            {
                ShipperTypesTableRow rowShipperTypesTableRow = ((ShipperTypesTableRow)(this.NewRow()));

                rowShipperTypesTableRow.ItemArray = new object[] {
                    ShipperTypeID,
                    ShipperTypeName
                };
                this.Rows.Add(rowShipperTypesTableRow);
                return(rowShipperTypesTableRow);
            }
Пример #2
0
 public ShipperTypesTableRowChangeEvent(ShipperTypesTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveShipperTypesTableRow(ShipperTypesTableRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddShipperTypesTableRow(ShipperTypesTableRow row)
 {
     this.Rows.Add(row);
 }