public IActionResult Index()

in web-site/Controllers/HomeController.cs [28:33]


        public IActionResult Index()
        {
            var albums = this.GetAlbums();
            this.ViewBag.Albums = albums;
            return View();
        }