Exemplo n.º 1
0
        public ActionResult Bewerk(int?id, int txtDoorloopTijd, FormCollection fc)
        {
            var ronde = new Ronde(id.GetValueOrDefault());

            ronde.Opslaan(txtDoorloopTijd);

            var locaties = fc.GeefCheckedValues <Locatie>("chkLocatie", i => new Locatie(i));

            ronde.ZetLocaties(locaties);

            return(Redirect("/Evenement/Bewerk/" + ronde.Evenement.ID));
        }