public void RemovelithologyRow(lithologyRow row) {
     this.Rows.Remove(row);
 }
 public lithologyRowChangeEvent(lithologyRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddlithologyRow(lithologyRow row) {
     this.Rows.Add(row);
 }