public void AddToBePreppedRow(ToBePreppedRow row) {
     this.Rows.Add(row);
 }
 public void RemoveToBePreppedRow(ToBePreppedRow row) {
     this.Rows.Remove(row);
 }
 public ToBePreppedRowChangeEvent(ToBePreppedRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }