private void detach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.ProductCategory = null;
		}
		private void attach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.ProductCategory = this;
		}
 partial void UpdateProduct(Product instance);
 partial void DeleteProduct(Product instance);
 partial void InsertProduct(Product instance);