partial void UpdateBoek(Boek instance);
 partial void DeleteBoek(Boek instance);
 partial void InsertBoek(Boek instance);
		private void detach_Boeks(Boek entity)
		{
			this.SendPropertyChanging();
			entity.Uitgever = null;
		}
		private void attach_Boeks(Boek entity)
		{
			this.SendPropertyChanging();
			entity.Uitgever = this;
		}
		private void detach_Boeks(Boek entity)
		{
			this.SendPropertyChanging();
			entity.Categorie = null;
		}
		private void attach_Boeks(Boek entity)
		{
			this.SendPropertyChanging();
			entity.Categorie = this;
		}