Пример #1
0
        public IActionResult Index()
        {
            var model = new HomePageViewModel();

            model.Articles = _articleData.GetAll();

            return(View(model));
        }