Ejemplo n.º 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);
            }
Ejemplo n.º 2
0
 public OutboundFreightTypeTableRowChangeEvent(OutboundFreightTypeTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveOutboundFreightTypeTableRow(OutboundFreightTypeTableRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddOutboundFreightTypeTableRow(OutboundFreightTypeTableRow row)
 {
     this.Rows.Add(row);
 }