/// <summary>
 /// Initializes a new instance of the ReadabilityViewModel class.
 /// </summary>
 public ReadabilityViewModel(
     INavigationService navigationService,
     IAuthenticationService authenticationService,
     IReadabilityClient readabilityClient,
     ITileService tileService,
     ReaderViewModel readerViewModel,
     ICacheService cacheService,
     FullPageViewModel fullPageViewModel)
     : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
 {
     _readabilityClient = readabilityClient;
     IsPinned = TileService.IsReadabilityPinned;
 }
 /// <summary>
 /// Initializes a new instance of the ReadabilityViewModel class.
 /// </summary>
 public ReadabilityViewModel(
     INavigationService navigationService,
     IAuthenticationService authenticationService,
     IReadabilityClient readabilityClient,
     ITileService tileService,
     ReaderViewModel readerViewModel,
     ICacheService cacheService,
     FullPageViewModel fullPageViewModel)
     : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
 {
     _readabilityClient = readabilityClient;
     IsPinned           = TileService.IsReadabilityPinned;
 }
        public LocalViewModel(
            INavigationService navigationService,
            IAuthenticationService authenticationService,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel,
            EditViewModel editViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _editViewModel = editViewModel;

            IsPinned = TileService.IsLocalPinned;
        }
        public LocalViewModel(
            INavigationService navigationService,
            IAuthenticationService authenticationService,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel,
            EditViewModel editViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _editViewModel = editViewModel;

            IsPinned = TileService.IsLocalPinned;
        }
Exemple #5
0
        /// <summary>
        /// Initializes a new instance of the PocketViewModel class.
        /// </summary>
        public PocketViewModel(
            INavigationService navigationService,
            IPocketClient pocketClient,
            IAuthenticationService authenticationService,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _pocketClient = pocketClient;

            IsPinned = TileService.IsPocketPinned;
        }
        /// <summary>
        /// Initializes a new instance of the PocketViewModel class.
        /// </summary>
        public PocketViewModel(
            INavigationService navigationService,
            IPocketClient pocketClient,
            IAuthenticationService authenticationService,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _pocketClient = pocketClient;

            IsPinned = TileService.IsPocketPinned;
        }
 protected ProviderViewModelBase(
     INavigationService navigationService,
     IAuthenticationService authenticationService,
     ICacheService cacheService,
     ITileService tileService,
     ReaderViewModel readerViewModel,
     FullPageViewModel fullPageViewModel)
 {
     NavigationService     = navigationService;
     AuthenticationService = authenticationService;
     CacheService          = cacheService;
     TileService           = tileService;
     ReaderViewModel       = readerViewModel;
     FullPageViewModel     = fullPageViewModel;
 }
 protected ProviderViewModelBase(
     INavigationService navigationService,
     IAuthenticationService authenticationService,
     ICacheService cacheService,
     ITileService tileService,
     ReaderViewModel readerViewModel,
     FullPageViewModel fullPageViewModel)
 {
     NavigationService = navigationService;
     AuthenticationService = authenticationService;
     CacheService = cacheService;
     TileService = tileService;
     ReaderViewModel = readerViewModel;
     FullPageViewModel = fullPageViewModel;
 }
        /// <summary>
        /// Initializes a new instance of the InstapaperViewModel class.
        /// </summary>
        public InstapaperViewModel(
            INavigationService navigationService,
            IAuthenticationService authenticationService,
            IInstapaperClient instapaperClient,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _instapaperClient = instapaperClient;
            IsPinned = TileService.IsInstapaperPinned;

            //EmailAddress = "*****@*****.**";
            //Password = "******";
            //EmailAddress = "*****@*****.**";
            //Password = "******";
        }
Exemple #10
0
        /// <summary>
        /// Initializes a new instance of the InstapaperViewModel class.
        /// </summary>
        public InstapaperViewModel(
            INavigationService navigationService,
            IAuthenticationService authenticationService,
            IInstapaperClient instapaperClient,
            ICacheService cacheService,
            ITileService tileService,
            ReaderViewModel readerViewModel,
            FullPageViewModel fullPageViewModel)
            : base(navigationService, authenticationService, cacheService, tileService, readerViewModel, fullPageViewModel)
        {
            _instapaperClient = instapaperClient;
            IsPinned          = TileService.IsInstapaperPinned;

            //EmailAddress = "*****@*****.**";
            //Password = "******";
            //EmailAddress = "*****@*****.**";
            //Password = "******";
        }