Guest User

Untitled

a guest
Feb 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. @Service
  2. class PessoaService {
  3.  
  4. public PessoaResponse converter(Pessoa pessoa, Long valor1, Long valor2) {
  5. PessoaResponse pessoaResponse = new PessoaMapperUtil(pessoa).toResponse();
  6. Long resultado = valor1 + valor2;
  7. pessoaResponse.setResultado(resultado);
  8. return pessoaResponse;
  9. }
  10.  
  11. }
  12.  
  13. @Service
  14. class PessoaService {
  15.  
  16. private final PessoaMapperUtil mapper;
  17.  
  18. @AutoWired
  19. PessoaService(PessoaMapperUtil mapper) { this.mapper = mapper; }
  20.  
  21. public PessoaResponse converter(Pessoa pessoa, Long valor1, Long valor2) {
  22. PessoaResponse pessoaResponse = mapper.toResponse(pessoa);
  23. Long resultado = valor1 + valor2;
  24. pessoaResponse.setResultado(resultado);
  25. return pessoaResponse;
  26. }
  27. }
Add Comment
Please, Sign In to add comment