public async Task Index()

in src/Relecloud.Web.CallCenter/Controllers/ConcertController.cs [34:46]


        public async Task<IActionResult> Index()
        {
            try
            {
                var model = await this.concertService.GetUpcomingConcertsAsync(10);
                return View(model);
            }
            catch (Exception ex)
            {
                logger.LogError(ex, "Unable to retrieve upcoming concerts");
                return View();
            }
        }