public void RemoveMasterAreaRow(MasterAreaRow row) {
     this.Rows.Remove(row);
 }
 public MasterAreaRowChangeEvent(MasterAreaRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddMasterAreaRow(MasterAreaRow row) {
     this.Rows.Add(row);
 }