Exemplo n.º 1
0
        public IActionResult Index()
        {
            int blogCount = 0;

            int blogTypeCount = 0;

            blogCount = BlogDataAccess.GetBlogCount();

            blogTypeCount = BlogTypeDataAccess.GetBlogTypeCount();

            ViewBag.BlogCount = blogCount;

            ViewBag.BlogTypeCount = blogTypeCount;

            return(View());
        }