Example #1
0
        public async Task <ActionResult <IEnumerable <Domain.Skier> > > GetAllSkiers()
        {
#if DEBUG
            logger.LogCall();
#endif

            return(Ok(await informationManager.GetAllSkiersAsync(
                          Domain.Associated <Domain.Sex> .LoadingType.Reference,
                          Domain.Associated <Domain.Country> .LoadingType.Reference,
                          Domain.Associated <Domain.StartPosition> .LoadingType.None)
                      .ConfigureAwait(false)));
        }