change arges to cater for selected patient

This commit is contained in:
2024-08-08 15:28:00 +02:00
parent 09538be196
commit e7523377ff
4 changed files with 16 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
import 'package:patient_manager/objects/appUser.dart';
import 'package:patient_manager/objects/business.dart';
import 'package:patient_manager/objects/businessUser.dart';
import 'package:patient_manager/objects/patients.dart';
class BusinessUpdateArguments {
final AppUser signedInUser;
@@ -16,10 +17,12 @@ class BusinessUpdateArguments {
class PatientViewArguments {
final AppUser signedInUser;
final Patient? selectedPatient;
final String type;
PatientViewArguments(
this.signedInUser,
this.selectedPatient,
this.type,
);
}