Ejemplo n.º 1
0
 public virtual void AddProductImage(Image image, int position)
 {
     var productImage = new ProductImage
     {
         Image = image,
         Position = position,
         Product = this
     };
     image.ProductImages.Add(productImage);
     ProductImages.Add(productImage);
 }
Ejemplo n.º 2
0
		private void detach_ProductImages(ProductImage entity)
		{
			this.SendPropertyChanging();
			entity.Image = null;
		}
Ejemplo n.º 3
0
		private void attach_ProductImages(ProductImage entity)
		{
			this.SendPropertyChanging();
			entity.Image = this;
		}
Ejemplo n.º 4
0
 partial void DeleteProductImage(ProductImage instance);
Ejemplo n.º 5
0
 partial void UpdateProductImage(ProductImage instance);
Ejemplo n.º 6
0
 partial void InsertProductImage(ProductImage instance);