|
@@ -10,22 +10,24 @@ class JsonRpcMockProxy extends JsonRpcProxy {
|
|
|
JsonRpcMockProxy({String? host}) : super(host: host);
|
|
|
|
|
|
@override
|
|
|
- VitalLabelService get label => LabelServiceMock(currentHostAddress);
|
|
|
+ VitalLabelService get vitalLabel => LabelServiceMock(currentHostAddress);
|
|
|
|
|
|
@override
|
|
|
- VitalPatientService get patient => PatientServiceMock(currentHostAddress);
|
|
|
+ VitalPatientService get vitalPatient =>
|
|
|
+ PatientServiceMock(currentHostAddress);
|
|
|
|
|
|
@override
|
|
|
- VitalPatientExtensionService get patientExtension =>
|
|
|
+ VitalPatientExtensionService get vitalPatientExtension =>
|
|
|
PatientExtensionServiceMock(currentHostAddress);
|
|
|
|
|
|
@override
|
|
|
- VitalDiagnosisService get diagnosis =>
|
|
|
+ VitalDiagnosisService get vitalDiagnosis =>
|
|
|
DiagnosisServiceMock(currentHostAddress);
|
|
|
|
|
|
@override
|
|
|
- VitalFollowUpService get followUp => FollowUpServiceMock(currentHostAddress);
|
|
|
+ VitalFollowUpService get vitalFollowUp =>
|
|
|
+ FollowUpServiceMock(currentHostAddress);
|
|
|
|
|
|
@override
|
|
|
- VitalExamService get exam => ExamServiceMock(currentHostAddress);
|
|
|
+ VitalExamService get vitalExam => ExamServiceMock(currentHostAddress);
|
|
|
}
|