public void RemoveTen_Most_Expensive_ProductsRow(Ten_Most_Expensive_ProductsRow row) {
     this.Rows.Remove(row);
 }
 public Ten_Most_Expensive_ProductsRowChangeEvent(Ten_Most_Expensive_ProductsRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddTen_Most_Expensive_ProductsRow(Ten_Most_Expensive_ProductsRow row) {
     this.Rows.Add(row);
 }