partial void DeleteProductImage(ProductImage instance);
 partial void UpdateProductImage(ProductImage instance);
		private void detach_ProductImage(ProductImage entity)
		{
			this.SendPropertyChanging();
			entity.Product = null;
		}
 partial void InsertProductImage(ProductImage instance);
		private void attach_ProductImage(ProductImage entity)
		{
			this.SendPropertyChanging();
			entity.Product = this;
		}