public TorrentsController(
     ITorrentFinderService torrentFinder,
     IDelugedConnectionService delugedConnection)
 {
     _torrentFinder     = torrentFinder;
     _delugedConnection = delugedConnection;
 }
 public TorrentFinderTests(
     ITorrentFilenameParserService filenameParser,
     ITorrentFinderService torrentFinder)
 {
     this._filenameParser = filenameParser;
     this._torrentFinder  = torrentFinder;
 }
Пример #3
0
 public AutomaticTorrentDownloaderService(
     ITorrentFinderService torrentFinder,
     ITorrentMatchCalcutationService matchCalculator)
 {
     this._torrentFinder   = torrentFinder;
     this._matchCalculator = matchCalculator;
 }