public TheTvDbApiDownloader(
     ITheTvDbConfigurationValues configurationValues,
     IHttpDownloader httpDownloader
     )
 {
     _configurationValues = configurationValues;
     _httpDownloader      = httpDownloader;
 }
Ejemplo n.º 2
0
 public TheTvDbEpisodeDataProvider(
     ITheTvDbConfigurationValues configurationValues,
     ITheTvDbAuthenticator authenticator,
     ITheTvDbApiDownloader apiDownloader
     )
 {
     _configurationValues = configurationValues;
     _authenticator       = authenticator;
     _apiDownloader       = apiDownloader;
 }
Ejemplo n.º 3
0
 public TheTvDbAuthenticator(
     IDateTimeProvider dateTimeProvider,
     ITheTvDbConfigurationValues configurationValues,
     ILocalPaths _localPaths,
     ITheTvDbApiDownloader apiDownloader
     )
 {
     _dateTimeProvider    = dateTimeProvider;
     _configurationValues = configurationValues;
     this._localPaths     = _localPaths;
     _apiDownloader       = apiDownloader;
 }