public async Task <ActionResult <IEnumerable <AppUserDTO> > > GetAsync() { var items = await _appUsers.GetAllAsync(); return(Ok(items.Select(o => Mappers.GetAppUserDTO(o)).ToList())); }