-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReservation.java
More file actions
48 lines (37 loc) · 1.15 KB
/
Reservation.java
File metadata and controls
48 lines (37 loc) · 1.15 KB
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
import java.util.Date;
public class Reservation {
private String idReservation;
private Integer numberPlace;
private String nomClient;
private Date dateReservation;
public Reservation(String idReservation,Integer numberPlace,String nomClient,Date dateReservation){
this.idReservation = idReservation;
this.numberPlace = numberPlace;
this.nomClient = nomClient;
this.dateReservation = dateReservation;
}
public String getIdReservation() {
return idReservation;
}
public void setIdReservation(String idReservation) {
this.idReservation = idReservation;
}
public Integer getNumberPlace() {
return numberPlace;
}
public void setNumberPlace(Integer numberPlace) {
this.numberPlace = numberPlace;
}
public String getNomClient() {
return nomClient;
}
public void setNomClient(String nomClient) {
this.nomClient = nomClient;
}
public Date getDateReservation() {
return dateReservation;
}
public void setDateReservation(Date dateReservation) {
this.dateReservation = dateReservation;
}
}