Ejemplo n.º 1
0
        public MainPageViewModel()
        {
            dataService = new EMRDataService();
            Encounters  = dataService.GetActiveEncounterList(db);

            decisionSupportService = new DecisionSupportService();
            RegisterCommand();

            CurrentEncounter       = null;
            this.AddProblemCommand = new DelegateCommand(() =>
            {
                if (CurrentEncounter != null)
                {
                    // pop up add problem dialog
                    //
                    // AddProblem(CurrentEncounter.Id,);
                }
            });
        }
 public DataCollectionController(IDecisionSupportService decisionSupportService)
 {
     _decisionSupportService = decisionSupportService;
 }
Ejemplo n.º 3
0
 public DecisionSupportController(IDecisionSupportService service)
 {
     this.decService = service;
 }
 public ManagementPlanController(IDecisionSupportService decisionSupportService, IManagementPlanService managementPlanService)
 {
     _decisionSupportService = decisionSupportService;
     _managementPlanService  = managementPlanService;
 }