-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatient.java
98 lines (70 loc) · 2.26 KB
/
Patient.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package DCMSpack;
import java.io.Serializable;
import java.util.ArrayList;
public class Patient extends User implements Serializable {
private String patientHistory;
protected ArrayList<Appointment> appointments = new ArrayList<>();
private int age;
private String gender;
private String bloodType;
private float weight;
private float height;
private String prescription="No prescription";
public String getPrescription() {
return prescription;
}
public void setPrescription(String prescription) {
this.prescription = prescription;
}
public Patient(String firstName, String lastName, String patientHistory, int age, String gender,
String bloodType, float weight, float height, String username, String email, String password, String mobileNumber) {
super(firstName, lastName, username, email, password, mobileNumber);
this.patientHistory = patientHistory;
this.age = age;
this.gender = gender;
this.bloodType = bloodType;
this.weight = weight;
this.height = height;
}
public String getPatientHistory() {
return patientHistory;
}
public int getAge() {
return age;
}
public String getGender() {
return gender;
}
public String getBloodType() {
return bloodType;
}
public float getWeight() {
return weight;
}
public float getHeight() {
return height;
}
public void setPatientHistory(String patientHistory) {
this.patientHistory = patientHistory;
}
public void setAge(int age) {
this.age = age;
}
public void setGender(String gender) {
this.gender = gender;
}
public void setBloodType(String bloodType) {
this.bloodType = bloodType;
}
public void setWeight(float weight) {
this.weight = weight;
}
public void setHeight(float height) {
this.height = height;
}
public void displayAllAppointment(){
for(Appointment app: appointments ){
System.out.println(app.serviceType.getName()+"\t"+app.serviceType.getPrice());
}
}
}