-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppointment.java
More file actions
69 lines (46 loc) · 1.47 KB
/
Appointment.java
File metadata and controls
69 lines (46 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package healthcareLook;
public class Appointment {
String appointmentDate;
String reasonForAppointment;
String appointmentTime;
String patient_id;
public Appointment(){
}
public Appointment(String appointmentDate, String appointmentTime, String patient_id) {
this.appointmentDate = appointmentDate;
this.reasonForAppointment = "Paying";
this.appointmentTime = appointmentTime;
this.patient_id = patient_id;
}
public Appointment(String appointmentDate, String reasonForAppointment, String appointmentTime, String patient_id) {
super();
this.appointmentDate = appointmentDate;
this.reasonForAppointment = reasonForAppointment;
this.appointmentTime = appointmentTime;
this.patient_id = patient_id;
}
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public String getAppointmentDate() {
return appointmentDate;
}
public void setAppointmentDate(String appointmentDate) {
this.appointmentDate = appointmentDate;
}
public String getReasonForAppointment() {
return reasonForAppointment;
}
public void setReasonForAppointment(String reasonForAppointment) {
this.reasonForAppointment = reasonForAppointment;
}
public String getAppointmentTime() {
return appointmentTime;
}
public void setAppointmentTime(String appointmentTime) {
this.appointmentTime = appointmentTime;
}
}