Пример #1
0
 public IOHandler(
     ILogger logger,
     IReader reader,
     IToolsProvider toolsProvider,
     IMusicCollectionFactory musicCollectionFactory,
     ITrackExtractor trackExtractor,
     ICloudStorageService cloudStorageService,
     Configuration configuration)
 {
     _logger                 = logger;
     _reader                 = reader;
     _toolsProvider          = toolsProvider;
     _musicCollectionFactory = musicCollectionFactory;
     _trackExtractor         = trackExtractor;
     _cloudStorageService    = cloudStorageService;
     _configuration          = configuration;
 }
 public UploadFromUrlCommandHandler(ITrackExtractor trackExtractor, IMusicCollection musicCollection)
 {
     _trackExtractor  = trackExtractor;
     _musicCollection = musicCollection;
 }