public void AddNoRow(NoRow row) {
     this.Rows.Add(row);
 }
 public void RemoveNoRow(NoRow row) {
     this.Rows.Remove(row);
 }
 public NoRowChangeEvent(NoRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }