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