public void RemoveDeleteHistoryRow(DeleteHistoryRow row) {
     this.Rows.Remove(row);
 }
 public DeleteHistoryRowChangeEvent(DeleteHistoryRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddDeleteHistoryRow(DeleteHistoryRow row) {
     this.Rows.Add(row);
 }