Exemplo n.º 1
0
        // [Bind(Include = "Id,Naam,Leeftijd,Centjes,Level,Gezondheid,Verveling,Levend")] Tamagotchi tamagotchi
        public ActionResult Create(TamagotchiModel tamagotchi)
        {
            if (ModelState.IsValid)
            {
                tamagotchi.Leeftijd   = 0;
                tamagotchi.Centjes    = 100;
                tamagotchi.Level      = 0;
                tamagotchi.Gezondheid = 100;
                tamagotchi.Verveling  = 0;
                tamagotchi.Levend     = 1;
                _tamagotchiRepository.Create(tamagotchi);
                _tamagotchiRepository.Save();
                return(RedirectToAction("Index"));
            }

            return(View(tamagotchi));
        }