Skip to content

Commit

Permalink
Update common.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pascualy authored Apr 12, 2024
1 parent e6ae000 commit 3ccf4e8
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions app/patient/common.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
/**
* Gets the patient name
*
* @itemId:pat-get-name
* When either of the following conditions is met, the system shall issue a warning notification to the user through an appropriate user interface:
* a) The recommended insulin dose exceeds the predefined upper or lower limits.
* b) The latest entered glucose reading is outdated according to the defined maximum allowable time interval.
* @itemId:dose-reading-warning
* @itemFulfills:req-patient-app-ui
* @itemTitle:"Get patient name"
* @itemTitle:"Insulin Dose and Glucose Reading Warning"
*
*/
function getPatientName() {
return 'John Doe';
}

/**
* Gets the patient address
*
* @itemId:pat-get-address
* @itemFulfills:req-patient-app-ui
*/
function getPatientAddress() {
return '123 Main St.';
}
// /**
// * Gets the patient address
// *
// * @itemId:pat-get-address
// * @itemFulfills:sw-1
// */
// function getPatientAddress() {
// return '123 Main St.';
// }

0 comments on commit 3ccf4e8

Please sign in to comment.