Ehr.Api.Dtos.PatientController Class Reference
Patient controller that will recieve requests for patient data
|
ServerResponse< int > | FindPatient ( RequestDto dto) |
| Controller method to find a patient by the account number sent by the request by calling the FindPatient method in the PatientService class. Must include authorization Header. Example below: var auth = base64.encode(user.userName + ':' + user.passWord); $http.defaults.headers.common['Authorization'] = 'Basic ' + auth; More...
|
|
ServerResponse< string > | GetDataCategory ( RequestDto dto) |
| Retrieves data for the selected data category and specified date/s. Must include authorization Header. Example below: var auth = base64.encode(user.userName + ':' + user.passWord); $http.defaults.headers.common['Authorization'] = 'Basic ' + auth; More...
|
|
◆ FindPatient()
Controller method to find a patient by the account number sent by the request by calling the FindPatient method in the PatientService class. Must include authorization Header. Example below: var auth = base64.encode(user.userName + ':' + user.passWord); $http.defaults.headers.common['Authorization'] = 'Basic ' + auth;
- Parameters
-
- Returns
- ServerResponse<T>
◆ GetDataCategory()
Retrieves data for the selected data category and specified date/s. Must include authorization Header. Example below: var auth = base64.encode(user.userName + ':' + user.passWord); $http.defaults.headers.common['Authorization'] = 'Basic ' + auth;
- Parameters
-
- Returns
- ServerResponse<T>