예제 #1
0
        public PatientRequestDetailsViewModel(object patientListItem)
        {
            _listItem = patientListItem as PatientRequestListItemModel;
            _patientRequestService = App.Container.Resolve <IPatientRequestService>();

            Init();
        }
예제 #2
0
 public RequestsController(
     IPatientRequestService requests,
     IPatientService patients,
     IUsersService users,
     IDoctorsService doctors)
 {
     this.requests = requests;
     this.patients = patients;
     this.users    = users;
     this.doctors  = doctors;
 }
예제 #3
0
        public SendPatientOrganDataViewModel(
            IPatientRequestService patientRequestService,
            IOrganDataSnapshotsService organDataSnapshotsService,
            ISensorsService sensorsService)
        {
            _patientRequestService     = patientRequestService;
            _organDataSnapshotsService = organDataSnapshotsService;
            _sensorsService            = sensorsService;

            Init();
        }
 public RequestsController(
     IPatientRequestService requests,
     IPatientService patients,
     IUsersService users,
     IDoctorsService doctors)
 {
     this.requests = requests;
     this.patients = patients;
     this.users = users;
     this.doctors = doctors;
 }
 public DoctorsController(IPatientRequestService patientRequest)
 {
     this.patientRequest = patientRequest;
 }
 public DoctorsController(IPatientRequestService patientRequest)
 {
     this.patientRequest = patientRequest;
 }
        public PatientRequestListViewModel(IPatientRequestService patientRequestService)
        {
            _patientRequestService = patientRequestService;

            Init();
        }