Пример #1
0
            public YardLocationTypeListTableRow AddYardLocationTypeListTableRow(short LocationTypeID, string Description, bool IsActive)
            {
                YardLocationTypeListTableRow rowYardLocationTypeListTableRow = ((YardLocationTypeListTableRow)(this.NewRow()));

                rowYardLocationTypeListTableRow.ItemArray = new object[] {
                    LocationTypeID,
                    Description,
                    IsActive
                };
                this.Rows.Add(rowYardLocationTypeListTableRow);
                return(rowYardLocationTypeListTableRow);
            }
Пример #2
0
 public YardLocationTypeListTableRowChangeEvent(YardLocationTypeListTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveYardLocationTypeListTableRow(YardLocationTypeListTableRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddYardLocationTypeListTableRow(YardLocationTypeListTableRow row)
 {
     this.Rows.Add(row);
 }