NEW: Patient Manager Provider Setup pt4

This commit is contained in:
2025-10-31 11:55:49 +02:00
parent 771d809ce2
commit cb25b932ba
9 changed files with 306 additions and 315 deletions

View File

@@ -15,6 +15,7 @@ class PatientManagerProvider extends ChangeNotifier {
List<Note>? consultationNotes;
List<PFile>? patientDocuments;
List<ClaimStatementFile>? patientClaimsDocuments;
List<Patient> patientSearchResults = [];
PatientManagerProvider({
this.patientProfileIndex = 0,
@@ -75,4 +76,9 @@ class PatientManagerProvider extends ChangeNotifier {
this.patientClaimsDocuments = patientClaimsDocuments ?? [];
notifyListeners();
}
void setPatientSearchResults({required List<Patient> patientSearchResults}) {
this.patientSearchResults = patientSearchResults;
notifyListeners();
}
}