Example #1
0
		private void detach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.Supplier = null;
		}
Example #2
0
		private void detach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.Category = null;
		}
Example #3
0
		private void attach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.Supplier = this;
		}
Example #4
0
		private void attach_Products(Product entity)
		{
			this.SendPropertyChanging();
			entity.Category = this;
		}
Example #5
0
 partial void DeleteProduct(Product instance);
Example #6
0
 partial void UpdateProduct(Product instance);
Example #7
0
 partial void InsertProduct(Product instance);
Example #8
0
 public virtual void InsertProductOnSubmit(Product p)
 {
     this.dataContext.Products.InsertOnSubmit(p);
 }