public async Task <UserDto> GetByIdAsync(int userId) { var entity = await _userService.GetById(userId); return(FactoryMapper.MapToDtoWithPassword(entity)); }