partial void DeleteProduct(Product instance);
partial void UpdateProduct(Product instance);
private void detach_Product(Product entity) { this.SendPropertyChanging(); entity.ProductModel = null; }
partial void InsertProduct(Product instance);
private void attach_Product(Product entity) { this.SendPropertyChanging(); entity.ProductModel = this; }