Entity -> DTO 변환. 서비스에서? 컨트롤러에서? 서비스에서 Entity -> DTO 변환 저는 아래와 같이 엔티티를 DTO로 변환하는 코드를 서비스에 작성했습니다. 하지만 그렇게 작성하니 문제가 발생했습니다. async signup(@Body() signupDto: UserSignupDto): Promise { return this.authService.signup(signupDto); } async signin(dto: UserSigninDto): Promise { const user = await this.userService.findUserEntityByEmail(dto.email); if (!user) { throw new UserIncorrectEmailException(); } if..