public void RemovepercentRow(percentRow row) {
     this.Rows.Remove(row);
 }
 public percentRowChangeEvent(percentRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddpercentRow(percentRow row) {
     this.Rows.Add(row);
 }