Example #1
0
        protected MenuVm(ISubAppDataService dataService)
        {
            DataService = dataService;

            InitializeCommonMenu();

            ShowVideoCommand = new RelayCommand(ShowVideo);
        }
Example #2
0
        public RecordingMenuVm(ISubAppDataService dataService) : base(dataService)
        {
            ShowContinuousImpedanceCommand = new RelayCommand(ShowContinuousImpedance);

            DoHyperventilationCommand = new RelayCommand(DoHyperVentilation);


            Initialize();
        }
Example #3
0
 public SubAppVm(ISubAppDataService dataService) : this()
 {
     DataService = dataService;
 }
Example #4
0
 public ReviewMenuVm(ISubAppDataService dataService) : base(dataService)
 {
     ShowHighlightsCommand = new RelayCommand(ShowHighlights);
     Initialize();
 }
Example #5
0
 public ReviewVm(ISubAppDataService dataService) : base(dataService)
 {
     Title = "Review";
 }
Example #6
0
 public RecordingVm(ISubAppDataService dataService) : base(dataService)
 {
     Title = "Recording";
     InitializeMenu();
 }