public PatientRequestDetailsViewModel(object patientListItem) { _listItem = patientListItem as PatientRequestListItemModel; _patientRequestService = App.Container.Resolve <IPatientRequestService>(); Init(); }
public RequestsController( IPatientRequestService requests, IPatientService patients, IUsersService users, IDoctorsService doctors) { this.requests = requests; this.patients = patients; this.users = users; this.doctors = doctors; }
public SendPatientOrganDataViewModel( IPatientRequestService patientRequestService, IOrganDataSnapshotsService organDataSnapshotsService, ISensorsService sensorsService) { _patientRequestService = patientRequestService; _organDataSnapshotsService = organDataSnapshotsService; _sensorsService = sensorsService; Init(); }
public DoctorsController(IPatientRequestService patientRequest) { this.patientRequest = patientRequest; }
public PatientRequestListViewModel(IPatientRequestService patientRequestService) { _patientRequestService = patientRequestService; Init(); }