Beispiel #1
0
            public OutboundFreightTypeTableRow AddOutboundFreightTypeTableRow(string FreightType, string Description, string InboundFreightType, int AgentID, string AgentName)
            {
                OutboundFreightTypeTableRow rowOutboundFreightTypeTableRow = ((OutboundFreightTypeTableRow)(this.NewRow()));

                rowOutboundFreightTypeTableRow.ItemArray = new object[] {
                    FreightType,
                    Description,
                    InboundFreightType,
                    AgentID,
                    AgentName
                };
                this.Rows.Add(rowOutboundFreightTypeTableRow);
                return(rowOutboundFreightTypeTableRow);
            }
Beispiel #2
0
 public OutboundFreightTypeTableRowChangeEvent(OutboundFreightTypeTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveOutboundFreightTypeTableRow(OutboundFreightTypeTableRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddOutboundFreightTypeTableRow(OutboundFreightTypeTableRow row)
 {
     this.Rows.Add(row);
 }