public void AddCurrent_Product_ListRow(Current_Product_ListRow row) {
     this.Rows.Add(row);
 }
 public void RemoveCurrent_Product_ListRow(Current_Product_ListRow row) {
     this.Rows.Remove(row);
 }
 public Current_Product_ListRowChangeEvent(Current_Product_ListRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }