public ActionResult News()
        {
            var model = new NewsModel();

            model.GetNewsTitlesForSlideShow();

            return(View("~/Views/News/News.cshtml", model));
        }
        public ActionResult Index()
        {
            var model = new NewsModel();

            model.GetNewsTitlesForSlideShow();

            return(View(model));
        }