Exemple #1
0
            public StoreErrorCodeTableRow AddStoreErrorCodeTableRow(int CodeID, string Code, string Description, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                StoreErrorCodeTableRow rowStoreErrorCodeTableRow = ((StoreErrorCodeTableRow)(this.NewRow()));

                rowStoreErrorCodeTableRow.ItemArray = new object[] {
                    CodeID,
                    Code,
                    Description,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowStoreErrorCodeTableRow);
                return(rowStoreErrorCodeTableRow);
            }
Exemple #2
0
 public StoreErrorCodeTableRowChangeEvent(StoreErrorCodeTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveStoreErrorCodeTableRow(StoreErrorCodeTableRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddStoreErrorCodeTableRow(StoreErrorCodeTableRow row)
 {
     this.Rows.Add(row);
 }