Inheritance: INotifyPropertyChanging, INotifyPropertyChanged
 partial void DeletePurchase(Purchase instance);
 partial void InsertPurchase(Purchase instance);
 partial void UpdatePurchase(Purchase instance);
		private void detach_Purchases(Purchase entity)
		{
			this.SendPropertyChanging();
			entity.Customer = null;
		}