Example #1
0
        public ActionResult GetAllPlanets()
        {
            // TODO: Implement this controller action
            List <Planet> planetList = _starWarsService.GetPlanets().Result;
            var           model      = _viewMapperHelper.AllPlanetsMapper(planetList);

            return(View(model));
        }