public async Task Delete()

in src/Relecloud.Web.CallCenter/Controllers/ConcertController.cs [154:166]


        public async Task<IActionResult> Delete(int id)
        {
            try
            {
                var model = await this.concertService.GetConcertByIdAsync(id);
                return View(model);
            }
            catch (Exception ex)
            {
                logger.LogError(ex, $"Unable to retrieve concertId: {id}");
                return View();
            }
        }