예제 #1
0
            public SortProfileTableRow AddSortProfileTableRow(string FreightType, int SortTypeID, string SortType, string ClientNumber, string ClientDivision, string VendorNumber, string Status, int LabelID, int ExceptionLocation)
            {
                SortProfileTableRow rowSortProfileTableRow = ((SortProfileTableRow)(this.NewRow()));

                rowSortProfileTableRow.ItemArray = new object[] {
                    FreightType,
                    SortTypeID,
                    SortType,
                    ClientNumber,
                    ClientDivision,
                    VendorNumber,
                    Status,
                    LabelID,
                    ExceptionLocation
                };
                this.Rows.Add(rowSortProfileTableRow);
                return(rowSortProfileTableRow);
            }
예제 #2
0
            public SortProfileTableRow AddSortProfileTableRow(bool Selected, long ProfileID, int LinkID, int LabelID, int SortTypeID, string SortType, bool IsElectronic, string ManifestPerTrailer, bool IsActive, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                SortProfileTableRow rowSortProfileTableRow = ((SortProfileTableRow)(this.NewRow()));

                rowSortProfileTableRow.ItemArray = new object[] {
                    Selected,
                    ProfileID,
                    LinkID,
                    LabelID,
                    SortTypeID,
                    SortType,
                    IsElectronic,
                    ManifestPerTrailer,
                    IsActive,
                    LastUpdated,
                    UserID,
                    RowVersion,
                    null
                };
                this.Rows.Add(rowSortProfileTableRow);
                return(rowSortProfileTableRow);
            }
예제 #3
0
            public SortProfileTerminalTableRow AddSortProfileTerminalTableRow(bool Selected, long ProfileID, int TerminalID, string Terminal, SortProfileTableRow parentSortProfileTableRowBySortProfileTable_SortProfileTerminalTable)
            {
                SortProfileTerminalTableRow rowSortProfileTerminalTableRow = ((SortProfileTerminalTableRow)(this.NewRow()));

                rowSortProfileTerminalTableRow.ItemArray = new object[] {
                    Selected,
                    ProfileID,
                    TerminalID,
                    Terminal,
                    parentSortProfileTableRowBySortProfileTable_SortProfileTerminalTable[12]
                };
                this.Rows.Add(rowSortProfileTerminalTableRow);
                return(rowSortProfileTerminalTableRow);
            }
예제 #4
0
 public SortProfileTableRowChangeEvent(SortProfileTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #5
0
 public void RemoveSortProfileTableRow(SortProfileTableRow row)
 {
     this.Rows.Remove(row);
 }
예제 #6
0
 public void AddSortProfileTableRow(SortProfileTableRow row)
 {
     this.Rows.Add(row);
 }
예제 #7
0
 public SortProfileTableRowChangeEvent(SortProfileTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }