public void AddProducts_by_CategoryRow(Products_by_CategoryRow row) {
     this.Rows.Add(row);
 }
 public void RemoveProducts_by_CategoryRow(Products_by_CategoryRow row) {
     this.Rows.Remove(row);
 }
 public Products_by_CategoryRowChangeEvent(Products_by_CategoryRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }