public void removeCadeauFromList(int IndexCadeau) { LijstHasCadeau item = _persistController.getLHCFromWishlist(_activeLijst.ID)[IndexCadeau]; LHCRepository.removeLHCFromRepo(item); _persistController.removeLHCFromWishlist(item); }
public void removeCadeauFromWishlist(int index) { //Het element op plaats index in de lijst van cadeaus in de actieve wishlist moet weg LijstHasCadeau lhc = LHCRepository.getCadeausFromList(_activeLijst.ID)[index]; _persistController.removeLHCFromWishlist(lhc); LHCRepository.removeLHCFromRepo(lhc); }
public Cadeau addCadeauToList(int IndexCadeau) { Cadeau cadeau = CadeauRepository.Cadeaus[IndexCadeau]; LijstHasCadeau item = new LijstHasCadeau(_activeLijst.ID, IndexCadeau, "Nee"); LHCRepository.addLHCToRepo(item); _persistController.addLHCToDB(item); return(cadeau); }
public LijstHasCadeau getLijstFromID(int ID) { return(LHCRepository.getLijstFromID(ID)); }