forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,14 +111,14 @@ private void initializeCommandTable() { | |
"edit <INDEX> [n/ <NAME>] [p/ <PHONE>] [e/ <EMAIL>] [a/ <ADDRESS>] [j/ <JOB>] [i/ <INCOME>] " | ||
+ "[t/ <TIER>] [rn/ <NEW REMARK>] [ra/ <REMARK TO BE APPENDED ONTO EXISTING ONE>] " | ||
+ "[s/ <STATUS>]", | ||
"edit 69 n/ TAN LESHEW p/ 77337733 e/ [email protected] a/ COM3 j/ doctor i/ 1000000000 " | ||
"edit 69 n/ TAN LESHEW p/ 97337733 e/ [email protected] a/ COM3 j/ doctor i/ 1000000000 " | ||
+ "t/ bronze ra/ Specialist in eye care s/ urgent"), | ||
new CommandSummary("List All Clients", | ||
"list", | ||
"list"), | ||
new CommandSummary("Filter Client List", | ||
"filter [n/ <NAME>] [p/ <PHONE>] [e/ <EMAIL>] [a/ <ADDRESS>] [j/ <JOB>] [i/ <INCOME>] " | ||
+ "[t/ <TIER>] [r/ <REMARK>] [s/ <STATUS>]", | ||
"filter [n/ <NAME>] [p/ <PHONE>] [e/ <EMAIL>] [a/ <ADDRESS>] [j/ <JOB>] " | ||
+ "[i/ (=/</>) <INCOME>] [t/ <TIER>] [r/ <REMARK>] [s/ <STATUS>]", | ||
"filter n/ TAN LESHEW t/ gold"), | ||
new CommandSummary("View Client Details", | ||
"view <INDEX>", | ||
|