Esempio n. 1
0
        public ActionResult All()
        {
            List <tblArticles> articles = _articleManager.GetAll();

            ViewBag.Articles = articles.OrderByDescending(n => n.Date).ToList();
            return(View());
        }