Exemple #1
0
        public ActionResult LastNewsBoxByCategory(int page)
        {
            string categoryUrl = TempData.Peek("categoryUrl").ToString();
            var    model       = Mapper.Map <List <ArticleBaseVm> >(_context.GetLastArticleByCategory(page, PageCountListByCategoryBox, categoryUrl));

            return(PartialView("_LastNewsBox", model));
        }