// GET: NFLStadiums/id
        public ActionResult GetStadium(int id)
        {
            var    stadium        = _nflService.GetStadiumById(id);
            string googleImageUrl = _googleService.AssembleGoogleImageString(stadium.GeoLat, stadium.GeoLong);

            StadiumViewModel model = new StadiumViewModel
            {
                Stadium     = stadium,
                GoogleImage = googleImageUrl
            };

            return(View("Stadium", model));
        }