Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
package br.gov.al.saude.scs.model.dto;
2
 
3
import java.io.Serializable;
4
 
5
 
6
public class InteressadoIntegraDTO implements Serializable{
7
 
8
        private static final long serialVersionUID = 1L;
9
 
10
        private String nome;
11
        private String numeroDocumento;
12
 
13
        public InteressadoIntegraDTO() {}
14
 
15
        public InteressadoIntegraDTO(String nome, String numeroDocumento) {
16
                super();
17
                this.nome = nome;
18
                this.numeroDocumento = numeroDocumento;
19
        }
20
 
21
        public String getNome() {
22
                return nome;
23
        }
24
 
25
        public void setNome(String nome) {
26
                this.nome = nome;
27
        }
28
 
29
        public String getNumeroDocumento() {
30
                return numeroDocumento;
31
        }
32
 
33
        public void setNumeroDocumento(String numeroDocumento) {
34
                this.numeroDocumento = numeroDocumento;
35
        }
36
 
37
}