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