public void AddOrder_SubtotalsRow(Order_SubtotalsRow row) {
     this.Rows.Add(row);
 }
 public void RemoveOrder_SubtotalsRow(Order_SubtotalsRow row) {
     this.Rows.Remove(row);
 }
 public Order_SubtotalsRowChangeEvent(Order_SubtotalsRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }