示例#1
0
            public LocalTerminalTableRow AddLocalTerminalTableRow(int TerminalID, string Number, string Description, string DBServerName, string LinkedServerName, string DBType, int AgentID, string AgentNumber, string ShipperID, System.Byte IsActive)
            {
                LocalTerminalTableRow rowLocalTerminalTableRow = ((LocalTerminalTableRow)(this.NewRow()));

                rowLocalTerminalTableRow.ItemArray = new object[] {
                    TerminalID,
                    Number,
                    Description,
                    DBServerName,
                    LinkedServerName,
                    DBType,
                    AgentID,
                    AgentNumber,
                    ShipperID,
                    IsActive
                };
                this.Rows.Add(rowLocalTerminalTableRow);
                return(rowLocalTerminalTableRow);
            }
示例#2
0
 public LocalTerminalTableRowChangeEvent(LocalTerminalTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveLocalTerminalTableRow(LocalTerminalTableRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddLocalTerminalTableRow(LocalTerminalTableRow row)
 {
     this.Rows.Add(row);
 }
示例#5
0
 public LocalTerminalTableRowChangeEvent(LocalTerminalTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }