예제 #1
0
 public TheTvDbApiDownloaderV4(
     ITheTvDbConfigurationValuesV4 configurationValues,
     IHttpDownloader httpDownloader
     )
 {
     _configurationValues = configurationValues;
     _httpDownloader      = httpDownloader;
 }
 public TheTvDbAuthenticatorV4(
     IDateTimeProvider dateTimeProvider,
     ITheTvDbConfigurationValuesV4 configurationValues,
     ILocalPaths localPaths,
     ITheTvDbApiDownloaderV4 apiDownloader
     )
 {
     _dateTimeProvider    = dateTimeProvider;
     _configurationValues = configurationValues;
     _localPaths          = localPaths;
     _apiDownloader       = apiDownloader;
 }