Esempio n. 1
0
        public ActionResult GetLanden(Leerling leerling, string continentNaam)
        {
            if (!leerling.IsActief)
            {
                return(RedirectToAction("Index", "Home"));
            }
            ICollection <Land> landen = continentRepository.GeefAlleLandenAlfabetisch(continentNaam);

            return(Json(landen.Select(l => new LandViewModel(l)), JsonRequestBehavior.AllowGet));
        }