public ActionResult Perspectives()
        {
            SEOToolStaticPage SEOTool = _seoToolStaticPageQueryService.FindSEOToolStaticPageByPermalink("perspectives");

            if (SEOTool != null)
            {
                ViewBag.FocusKeyword    = SEOTool.FocusKeyword;
                ViewBag.MetaDescription = SEOTool.MetaDescription;
                ViewBag.Title           = SEOTool.SEOTitle;
            }

            var blog     = _perspectiveService.LatestPost().ToList();
            var allTours = _perspectiveService.AllTours().ToList();

            return(View(new LatestPerspectivePost
            {
                Tours = allTours,
                PerspectivePosts = blog,
                //Comment = new Models.Comments.CommentEdit()
            }));
        }