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