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

            return(Ok(await informationManager.GetAllCountriesAsync()
                      .ConfigureAwait(false)));
        }