Exemplo n.º 1
0
        public ActionResult Toevoegen(int?tamagotchiID, int?id)
        {
            HotelKamer kamer = kamerRepository.GetKamer((int)id);


            tamagotchiRepository.ChangeKamer((int)tamagotchiID, kamer.Id);

            if (kamer.HoeveelheidBedden == kamer.Tamagotchi.Count)
            {
                return(RedirectToAction("Index"));
            }
            return(RedirectToAction("Boeken", new { id }));

            //wat doet deze regel precies?
            //ViewBag.HotelKamerID = new SelectList(db.HotelKamer, "Id", "KamerType", tamagotchi.HotelKamerID);
        }