public ViewResult Destination(string destinationName) { // right now we don't have access to the user from the form because we are in a different method // and don't have a database or session set up Guide guide = new Guide(new User()); Destination selectedDestionation = guide.GetDestination(destinationName); return(View("Destination", selectedDestionation)); }