Esempio n. 1
0
        public ActionResult GetResidentsOfPlanet(string planetname)
        {
            // TODO: Implement this controller action
            List <Person>            planetResidents = _starWarsService.GetResidentsByPlanet(planetname).Result;
            PlanetResidentsViewModel model           = _viewMapperHelper.ResidentsMapper(planetResidents, planetname);

            return(View(model));
        }