public ActionResult Index()
        {
            ViewBag.ImagePath = ControllerConstants.ImagePath;
            var allNews = _newsService.GetAll();

            return(View(allNews));
        }