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

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