import 'package:fis_jsonrpc/rpc.dart'; abstract class IPrescriptionManager { Future createPrescription({ required String patientCode, required String prescriptionKey, String? physicalExamNumber, String? followUpCode, String? prescriptionData, }); Future getPrescriptionDetailByFollowAnPatient({ required String patientCode, String? followUpCode, }); Future?> getPrescriptionPage({ required String patientCode, String? physicalExamNumber, String? followUpCode, }); Future updatePrescription({ required String patientCode, required String prescriptionKey, required String prescriptionCode, String? physicalExamNumber, String? followUpCode, String? prescriptionData, }); Future removePrescription({ required String prescriptionCode, }); }