Rev 439 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 439 | Rev 610 | ||
|---|---|---|---|
| Line 66... | Line 66... | ||
| 66 | super(); |
66 | super(); |
| 67 | this.sequencial = sequencial; |
67 | this.sequencial = sequencial; |
| 68 | this.nome = nome; |
68 | this.nome = nome; |
| 69 | }
|
69 | }
|
| 70 | 70 | ||
| 71 | public PessoaDTO(Long sequencial, String nome, String email) { |
- | |
| - | 71 | public PessoaDTO(Long sequencial, String nome, String cpfCnpj, String email) { |
|
| 72 | super(); |
72 | super(); |
| 73 | this.sequencial = sequencial; |
73 | this.sequencial = sequencial; |
| 74 | this.nome = nome; |
74 | this.nome = nome; |
| - | 75 | this.cpfCnpj = cpfCnpj; |
|
| 75 | this.email = email; |
76 | this.email = email; |
| 76 | }
|
77 | }
|
| 77 | 78 | ||
| 78 | public static String CONSULTA_DTO = "e.sequencial, e.nome, e.tipoPessoa, e.cpfCnpj, e.ativo"; |
79 | public static String CONSULTA_DTO = "e.sequencial, e.nome, e.tipoPessoa, e.cpfCnpj, e.ativo"; |
| 79 | public PessoaDTO(Long sequencial, String nome, String tipoPessoa, String cpfCnpj, Boolean ativo) { |
80 | public PessoaDTO(Long sequencial, String nome, String tipoPessoa, String cpfCnpj, Boolean ativo) { |