public async Task <ChampionshipsContainerBeforeV3ViewModel> GetAsync(CancellationToken cancellationToken = default)
        {
            var championships = await _championatService.GetAllAsync(cancellationToken);

            var container = _mapper.From(championships).AdaptToType <ChampionshipsContainerBeforeV3ViewModel>();

            return(container);
        }