コード例 #1
0
        public AuthenticationService(
            INewsBlurClient newsBlurClient,
            IApplicationSettingsService applicationSettingsService)
        {
            _newsBlurClient             = newsBlurClient;
            _applicationSettingsService = applicationSettingsService;

            GetAuthenticationDetails();
            GetUserProfile();
        }
コード例 #2
0
ファイル: Synchronizer.cs プロジェクト: clarkezone/spectro
 public Synchronizer(
     INewsBlurClient newsBlurClient,
     IProgressService progressService,
     IAuthenticationService authenticationService,
     IDataCacheService dataCacheService)
 {
     _newsBlurClient        = newsBlurClient;
     _progressService       = progressService;
     _authenticationService = authenticationService;
     _dataCacheService      = dataCacheService;
 }