public ActionResult Lekplats(int?lekplatsId) { if (!lekplatsId.HasValue) { return(RedirectToAction("Index")); } //Visar en specifik lekplats LekplatsService.LekplatsFullständigData lekplats = klient.GetLekplatsData(Convert.ToInt32(lekplatsId)); return(View(lekplats)); }
public ActionResult GeBetyg(int?id) { //Hantering för om felaktigt id anges i url if (!id.HasValue) { return(RedirectToAction("Index")); } //Visar vyn för att lämna ett betyg LekplatsService.LekplatsFullständigData lekplatsAttBetygsätta = new LekplatsService.LekplatsFullständigData(); lekplatsAttBetygsätta = klient.GetLekplatsData(Convert.ToInt32(id)); return(View(lekplatsAttBetygsätta)); }