Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sample data util #97

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ public static Person[] getSamplePersons() {
return new Person[]{

new Person(new Name("Alex Yeoh"), getTagSet("Diabetes"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("01/01/2022"), new Ward("WA"),
new Ic("S1233567A"), new AdmissionDate("01/01/2022"), new Ward("WA"),
new Remark("Requires assistance with feeding.")),
new Person(new Name("Bernice Yu"), getTagSet("FallRisk", "Diabetes"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("02/01/2022"), new Ward("WB"),
new Ic("S1244567A"), new AdmissionDate("02/01/2022"), new Ward("WB"),
new Remark("Flip every 2 hours to prevent bed sores.")),
new Person(new Name("Charlotte Oliveiro"), getTagSet("FallRisk"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("03/01/2022"), new Ward("WC"), new Remark("")),
new Ic("S1234577A"), new AdmissionDate("03/01/2022"), new Ward("WC"), new Remark("")),
new Person(new Name("David Li"), getTagSet("Dementia"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("04/01/2022"), new Ward("WD"), new Remark("")),
new Ic("S1234566A"), new AdmissionDate("04/01/2022"), new Ward("WD"), new Remark("")),
new Person(new Name("Irfan Ibrahim"), getTagSet("NPO"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("05/01/2022"), new Ward("WE"), new Remark("")),
new Ic("S2234567A"), new AdmissionDate("05/01/2022"), new Ward("WE"), new Remark("")),
new Person(new Name("Roy Balakrishnan"), getTagSet("Dementia"), new Dob("01/01/1990"),
new Ic("S1234567A"), new AdmissionDate("06/01/2022"), new Ward("WF"), new Remark(""))
};
Expand Down
Loading