-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cliente.java
41 lines (33 loc) · 915 Bytes
/
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
public class Cliente {
private String nome;
private int idade;
private String cpf;
Reserva reserva;
public Cliente(String nome, int idade, String cpf) {
this.nome = nome;
this.idade = idade;
this.cpf = cpf;
}
public String getNome() {
return nome;
}
public int getIdade() {
return idade;
}
public String getCpf() {
return cpf;
}
public Reserva getReserva() {
return reserva;
}
public String toString() {
return "\nCliente: " + getNome() + " \nCPF: " + getCpf() + " \nIdade: " + getIdade() + " \n\nReserva: "
+ getReserva();
}
public void reservarVeiculo(int qtdeDias, int mesReservado, int diaInicial, Veiculo v) {
reserva = new Reserva(qtdeDias, mesReservado, diaInicial, v);
}
public void cancelarReserva() {
reserva = null;
}
}