Example #1
0
            public DamageCodeTableRow AddDamageCodeTableRow(short Code, string Description, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                DamageCodeTableRow rowDamageCodeTableRow = ((DamageCodeTableRow)(this.NewRow()));

                rowDamageCodeTableRow.ItemArray = new object[] {
                    Code,
                    Description,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowDamageCodeTableRow);
                return(rowDamageCodeTableRow);
            }
Example #2
0
 public DamageCodeTableRowChangeEvent(DamageCodeTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveDamageCodeTableRow(DamageCodeTableRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddDamageCodeTableRow(DamageCodeTableRow row)
 {
     this.Rows.Add(row);
 }