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