Exemple #1
0
            public YardSectionDetailTableRow AddYardSectionDetailTableRow(int SectionID, int YardID, string SectionNumber, string Description, bool IsActive, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                YardSectionDetailTableRow rowYardSectionDetailTableRow = ((YardSectionDetailTableRow)(this.NewRow()));

                rowYardSectionDetailTableRow.ItemArray = new object[] {
                    SectionID,
                    YardID,
                    SectionNumber,
                    Description,
                    IsActive,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowYardSectionDetailTableRow);
                return(rowYardSectionDetailTableRow);
            }
Exemple #2
0
 public YardSectionDetailTableRowChangeEvent(YardSectionDetailTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveYardSectionDetailTableRow(YardSectionDetailTableRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddYardSectionDetailTableRow(YardSectionDetailTableRow row)
 {
     this.Rows.Add(row);
 }