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