예제 #1
0
            public YardSectionListTableRow AddYardSectionListTableRow(int YardID, string YardName, string YardDescription, int TerminalID, string Terminal, int SectionID, string SectionNumber, string Description, bool IsActive, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                YardSectionListTableRow rowYardSectionListTableRow = ((YardSectionListTableRow)(this.NewRow()));

                rowYardSectionListTableRow.ItemArray = new object[] {
                    YardID,
                    YardName,
                    YardDescription,
                    TerminalID,
                    Terminal,
                    SectionID,
                    SectionNumber,
                    Description,
                    IsActive,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowYardSectionListTableRow);
                return(rowYardSectionListTableRow);
            }
예제 #2
0
 public void RemoveYardSectionListTableRow(YardSectionListTableRow row)
 {
     this.Rows.Remove(row);
 }
예제 #3
0
 public void AddYardSectionListTableRow(YardSectionListTableRow row)
 {
     this.Rows.Add(row);
 }
예제 #4
0
 public YardSectionListTableRowChangeEvent(YardSectionListTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }