public void AddOrders_QryRow(Orders_QryRow row) {
     this.Rows.Add(row);
 }
 public void RemoveOrders_QryRow(Orders_QryRow row) {
     this.Rows.Remove(row);
 }
 public Orders_QryRowChangeEvent(Orders_QryRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }