partial void DeleteZug(Zug instance);
 partial void UpdateZug(Zug instance);
		private void detach_Zug(Zug entity)
		{
			this.SendPropertyChanging();
			entity.Matten = null;
		}
 partial void InsertZug(Zug instance);
		private void attach_Zug(Zug entity)
		{
			this.SendPropertyChanging();
			entity.Matten = this;
		}