public ActionResult AddOfVerwijderVerlanglijst(int id, Gebruiker gebruiker) { try { Product product = productRepository.FindByProductNummer(id); gebruiker.VoegProductAanVerlanglijstToe(product); if (gebruiker.VerlangLijst.Contains(product)) { TempData["Info"] = "Product " + product.Naam + " is toegevoegd aan verlanglijst."; } else { TempData["Info2"] = "Product " + product.Naam + " is verwijderd uit uw verlanglijst."; } gebruikerRepository.SaveChanges(); } catch (ArgumentException e) { TempData["ReservatieFail"] = e.Message; } return(RedirectToAction("Index")); }