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

Add Sort Command to UG #111

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
14 changes: 14 additions & 0 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,20 @@ Format: `delete NRIC`
Examples:
* `delete S1234567A` deletes the patient profile of the patient with `NRIC S1234567A`.

### Sort list of patients: `sort`

Sorts the list of patients based on the specified criteria.

Format: `sort [name | appointment]`

Examples:
* `sort name` sorts the list of patients in alphabetical order by their names.
* `sort appointment` sorts the list of patients by their upcoming appointment dates in chronological order.

#### Notes
- If the list is already sorted by the specified criteria, the command will maintain the current order.
- Sorting by `appointment` will only consider patients with scheduled appointments. Patients without appointments will appear at the end of the list.

### Clearing all entries : `clear`

Clears all entries from the database.
Expand Down