partial void DeleteTeil(Teil instance);
 partial void UpdateTeil(Teil instance);
		private void detach_Teil(Teil entity)
		{
			this.SendPropertyChanging();
			entity.Bereich = null;
		}
 partial void InsertTeil(Teil instance);
		private void attach_Teil(Teil entity)
		{
			this.SendPropertyChanging();
			entity.Bereich = this;
		}