partial void Deleteproduct(product instance);
partial void Updateproduct(product instance);
private void detach_products(product entity) { this.SendPropertyChanging(); entity.category = null; }
partial void Insertproduct(product instance);
private void attach_products(product entity) { this.SendPropertyChanging(); entity.category = this; }