public void VerwijderArtikel(BesteldArtikel besteldArtikel) { if (besteldArtikel.Aantal > 1) { besteldArtikel.Aantal--; besteldArtikel.ResetAantalString(); } else { this.BesteldeArtikels.Remove(besteldArtikel); } }
public bool AddArtikel(BesteldArtikel besteldArtikel) { foreach (BesteldArtikel temp in this.BesteldeArtikels) { if (temp.Productnr == besteldArtikel.Productnr) { return(false); } } this.BesteldeArtikels.Add(besteldArtikel); return(true); }