NEW: Patient Manager Provider Setup pt4
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user