Esempio n. 1
0
            public OutboundServiceTypeTableRow AddOutboundServiceTypeTableRow(string FreightType, string Mnemonic, bool IsPickup, string Description, int AgentServiceID, bool IsActive, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                OutboundServiceTypeTableRow rowOutboundServiceTypeTableRow = ((OutboundServiceTypeTableRow)(this.NewRow()));

                rowOutboundServiceTypeTableRow.ItemArray = new object[] {
                    null,
                    FreightType,
                    Mnemonic,
                    IsPickup,
                    Description,
                    AgentServiceID,
                    IsActive,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowOutboundServiceTypeTableRow);
                return(rowOutboundServiceTypeTableRow);
            }
Esempio n. 2
0
 public OutboundServiceTypeTableRowChangeEvent(OutboundServiceTypeTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveOutboundServiceTypeTableRow(OutboundServiceTypeTableRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddOutboundServiceTypeTableRow(OutboundServiceTypeTableRow row)
 {
     this.Rows.Add(row);
 }