Example #1
0
        public async Task <ActionResult <IEnumerable <AppUserDTO> > > GetAsync()
        {
            var items = await _appUsers.GetAllAsync();

            return(Ok(items.Select(o => Mappers.GetAppUserDTO(o)).ToList()));
        }