public SearchPageViewModel(INavigation navigation,
                            INavigationBar navBar,
                            BrandingViewModel branding,
                            IPortalDataSource dataSource)
     : base(navigation, navBar, branding)
 {
     this._dataSource = dataSource;
 }
 public InstalledAppsPageViewModel(INavigation navigation,
                                   IMessageBox messageBox,
                                   INavigationBar navBar,
                                   IFileSyncManager fileManager,
                                   BrandingViewModel branding)
     : base(navigation, navBar, branding)
 {
     this._messageBox  = messageBox;
     this._fileManager = fileManager;
 }
        public AppDetailsPageViewModel(INavigation navigation,
                                       IMessageBox messageBox,
                                       INavigationBar navBar,
                                       IFileSyncManager fileManager,
                                       BrandingViewModel branding)
            : base(navigation, navBar, branding)
        {
            this._messageBox  = messageBox;
            this._fileManager = fileManager;

            this.ControlEnabled = true;
        }
예제 #4
0
 public MainPageViewModel(INavigation navigation,
                          IMessageBox messageBox,
                          INavigationBar navBar,
                          IPortalDataSource dataSource,
                          IFileSyncManager fileManager,
                          BrandingViewModel branding)
     : base(navigation, navBar, branding)
 {
     this._messageBox  = messageBox;
     this._dataSource  = dataSource;
     this._fileManager = fileManager;
 }
예제 #5
0
 public ExtendedSplashPageViewModel(INavigation navigation, IPortalDataSource dataSource, BrandingViewModel brandingViewModel)
     : base(navigation)
 {
     _dataSource        = dataSource;
     _brandingViewModel = brandingViewModel;
 }
예제 #6
0
 protected PageViewModelBase(INavigation navigation, INavigationBar navBar, BrandingViewModel brandingViewModel)
     : base(navigation)
 {
     _navigationBar     = navBar;
     _brandingViewModel = brandingViewModel;
 }