|
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import 'package:doctor_app_flutter/config/config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/ChiefComplaint/GetChiefComplaintReqModel.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/ChiefComplaint/GetChiefComplaintResModel.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/GeneralGetReqForSOAP.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/SOAP/GetAllergiesResModel.dart';
|
|
|
|
|
@ -221,7 +222,7 @@ class SOAPService extends LookupService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future getPatientChiefComplaint(
|
|
|
|
|
GeneralGetReqForSOAP generalGetReqForSOAP) async {
|
|
|
|
|
GetChiefComplaintReqModel getChiefComplaintReqModel) async {
|
|
|
|
|
hasError = false;
|
|
|
|
|
await baseAppClient.post (GET_CHIEF_COMPLAINT,
|
|
|
|
|
onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
@ -233,7 +234,7 @@ class SOAPService extends LookupService {
|
|
|
|
|
}, onFailure: (String error, int statusCode) {
|
|
|
|
|
hasError = true;
|
|
|
|
|
super.error = error;
|
|
|
|
|
}, body: generalGetReqForSOAP.toJson());
|
|
|
|
|
}, body: getChiefComplaintReqModel.toJson());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Future getPatientPhysicalExam(
|
|
|
|
|
|