public TheTvDbEpisodeDataProviderV4(
     ITheTvDbAuthenticatorV4 authenticator,
     ITheTvDbApiDownloaderV4 apiDownloader
     )
 {
     _authenticator = authenticator;
     _apiDownloader = apiDownloader;
 }
 public TheTvDbAuthenticatorV4(
     IDateTimeProvider dateTimeProvider,
     ITheTvDbConfigurationValuesV4 configurationValues,
     ILocalPaths localPaths,
     ITheTvDbApiDownloaderV4 apiDownloader
     )
 {
     _dateTimeProvider    = dateTimeProvider;
     _configurationValues = configurationValues;
     _localPaths          = localPaths;
     _apiDownloader       = apiDownloader;
 }