public void RetourBoek(Boek boek) { Boek bk = null; boek.AantalBeschikbaar += 1; foreach (Boek b in boeken) { if (b.Titel == boek.Titel) { bk = b; } } boeken.Remove(bk); //this.boeken.Remove(boek); Bibliotheek.brep.RetourBoek(this.gebruikernaam, boek); }