public void AddCategory(ProductCategory category)
 {
     _productCategories.Add(category);
 }
 public void RemoveCategory(ProductCategory category)
 {
     _productCategories.Remove(category);
 }
 private bool OwnsCategory(ProductCategory category)
 {
     return(category.SupplierId == Id);
 }