-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCliente.java
83 lines (46 loc) · 1.04 KB
/
Cliente.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package br.com.proway.livraria;
public class Cliente {
private String nome;
private String email;
private String cpf;
private String endereco;
public Cliente() {
}
public Cliente( String nome, String email, String cpf, String endereco) {
super();
this.nome = nome;
this.email = email;
this.cpf = cpf;
this.endereco = endereco;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getCpf() {
return cpf;
}
public void setCpf(String cpf) {
this.cpf = cpf;
}
public String getEndereco() {
return endereco;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public void imprimirDados() {
System.out.println("Nome: "+ this.nome);
System.out.println("Email: "+ this.email);
System.out.println("CPF: "+ this.cpf);
System.out.println("Endereço: "+ this.endereco);
}
}