Пример #1
0
            public InboundFreightTableRow AddInboundFreightTableRow(
                string FreightID,
                string FreightType,
                string CurrentLocation,
                int TDSNumber,
                string TrailerNumber,
                string StorageTrailerNumber,
                string ClientNumber,
                string ClientName,
                string ShipperNumber,
                string ShipperName,
                string PickupID,
                string PickupDate,
                string PickupNumber,
                string Status,
                int Cartons,
                int Pallets,
                int CarrierNumber,
                int DriverNumber,
                string FloorStatus,
                string SealNumber,
                string UnloadedStatus,
                string VendorKey,
                string ReceiveDate,
                int TerminalID,
                System.Decimal CubeRatio)
            {
                InboundFreightTableRow rowInboundFreightTableRow = ((InboundFreightTableRow)(this.NewRow()));

                rowInboundFreightTableRow.ItemArray = new object[] {
                    FreightID,
                    FreightType,
                    CurrentLocation,
                    TDSNumber,
                    TrailerNumber,
                    StorageTrailerNumber,
                    ClientNumber,
                    ClientName,
                    ShipperNumber,
                    ShipperName,
                    PickupID,
                    PickupDate,
                    PickupNumber,
                    Status,
                    Cartons,
                    Pallets,
                    CarrierNumber,
                    DriverNumber,
                    FloorStatus,
                    SealNumber,
                    UnloadedStatus,
                    VendorKey,
                    ReceiveDate,
                    TerminalID,
                    CubeRatio
                };
                this.Rows.Add(rowInboundFreightTableRow);
                return(rowInboundFreightTableRow);
            }
Пример #2
0
 public void RemoveInboundFreightTableRow(InboundFreightTableRow row)
 {
     this.Rows.Remove(row);
 }
Пример #3
0
 public void AddInboundFreightTableRow(InboundFreightTableRow row)
 {
     this.Rows.Add(row);
 }
Пример #4
0
 public InboundFreightTableRowChangeEvent(InboundFreightTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }