Пример #1
0
 public RTorrent(IRTorrentProxy proxy,
                 ITorrentFileInfoReader torrentFileInfoReader,
                 IHttpClient httpClient,
                 IConfigService configService,
                 IDiskProvider diskProvider,
                 IRTorrentDirectoryValidator rTorrentDirectoryValidator,
                 Logger logger)
     : base(torrentFileInfoReader, httpClient, configService, diskProvider, logger)
 {
     _proxy = proxy;
     _rTorrentDirectoryValidator = rTorrentDirectoryValidator;
 }
Пример #2
0
 public RTorrent(IRTorrentProxy proxy,
                 ITorrentFileInfoReader torrentFileInfoReader,
                 IHttpClient httpClient,
                 IConfigService configService,
                 IDiskProvider diskProvider,
                 IRemotePathMappingService remotePathMappingService,
                 IDownloadSeedConfigProvider downloadSeedConfigProvider,
                 IRTorrentDirectoryValidator rTorrentDirectoryValidator,
                 Logger logger)
     : base(torrentFileInfoReader, httpClient, configService, diskProvider, remotePathMappingService, logger)
 {
     _proxy = proxy;
     _rTorrentDirectoryValidator = rTorrentDirectoryValidator;
     _downloadSeedConfigProvider = downloadSeedConfigProvider;
 }