Rev 624 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 624 | Rev 631 | ||
|---|---|---|---|
| Line 27... | Line 27... | ||
| 27 | */
|
27 | */
|
| 28 | 28 | ||
| 29 | public ClienteDTO() { |
29 | public ClienteDTO() { |
| 30 | }
|
30 | }
|
| 31 | 31 | ||
| 32 | public ClienteDTO(Long sequencial, String nome, Date dataNascimento, String contato, String telefone) { |
- | |
| - | 32 | public ClienteDTO(Long sequencial, String nome, String cpfCnpj, Date dataNascimento, String contato, String telefone) { |
|
| 33 | this.sequencial = sequencial; |
33 | this.sequencial = sequencial; |
| 34 | this.nome = nome; |
34 | this.nome = nome; |
| - | 35 | this.cpfCnpj = cpfCnpj; |
|
| 35 | this.dataNascimento = dataNascimento; |
36 | this.dataNascimento = dataNascimento; |
| 36 | this.contato = contato; |
37 | this.contato = contato; |
| 37 | this.telefone = telefone; |
38 | this.telefone = telefone; |
| 38 | }
|
39 | }
|
| 39 | 40 | ||