public async Task OnGet(int id)
        {
            try
            {
                ViewModel = await _controller.GetConcertByIdAsync(id);

                IsError = false;
            }
            catch (Exception ex)
            {
                IsError      = true;
                ErrorMessage = ex.Message;
            }
        }