public async Task <IActionResult> GetChampionshipStanding(Guid championshipId)
        {
            var response = await _standingQueries.GetChampionshipStanding(championshipId);

            return(Ok(response));
        }