public async Task <ActionResult <IEnumerable <Domain.Race> > > GetAllRaces()
        {
#if DEBUG
            logger.LogCall();
#endif

            return(Ok(await informationManager.GetAllRacesAsync(
                          raceTypeLoadingType: Domain.Associated <Domain.RaceType> .LoadingType.Reference,
                          venueLoadingType: Domain.Associated <Domain.Venue> .LoadingType.Reference,
                          seasonLoadingType: Domain.Associated <Domain.Season> .LoadingType.None)
                      .ConfigureAwait(false)));
        }