public void RemovesampleRow(sampleRow row) {
     this.Rows.Remove(row);
 }
 public sampleRowChangeEvent(sampleRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddsampleRow(sampleRow row) {
     this.Rows.Add(row);
 }