Esempio n. 1
0
        public async Task <IActionResult> GetAppUser(int id)
        {
            var user = await _repo.GetAppUser(id);

            var userToReturn = _mapper.Map <AppUserForDetailedDto>(user);

            return(Ok(userToReturn));
        }