public CellsetMetaDataRowChangeEvent(CellsetMetaDataRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddCellsetMetaDataRow(CellsetMetaDataRow row) {
     this.Rows.Add(row);
 }
 public void RemoveCellsetMetaDataRow(CellsetMetaDataRow row) {
     this.Rows.Remove(row);
 }
 public CellsetMetaDataRowChangeEvent(CellsetMetaDataRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }