Ejemplo n.º 1
0
        public IActionResult Home()
        {
            var model = new HomeVM();

            model.User          = User.Identity.Name;
            model.RecentNews    = statsRep.GetTheNews();
            model.OldNews       = statsRep.GetOldNews();
            model.recentMatches = statsRep.GetRecentMatches();
            return(View(model));
        }