partial void DeletePrice(Price instance);
 partial void UpdatePrice(Price instance);
		private void detach_Prices(Price entity)
		{
			this.SendPropertyChanging();
			entity.Product = null;
		}
 partial void InsertPrice(Price instance);
		private void attach_Prices(Price entity)
		{
			this.SendPropertyChanging();
			entity.Product = this;
		}