Esempio n. 1
0
 public IndexPackageTask(
     IPackageProcessorConfiguration configuration,
     INotifierService notifier,
     ISupportService support,
     IAddInfoBuilder addInfoBuilder,
     IPdbStoreManager pdbStoreManager,
     IFileCompressor fileCompressor)
 {
     this.configuration   = configuration;
     this.notifier        = notifier;
     this.support         = support;
     this.addInfoBuilder  = addInfoBuilder;
     this.pdbStoreManager = pdbStoreManager;
     this.fileCompressor  = fileCompressor;
 }
Esempio n. 2
0
 public PackageProcessor(
     IPackageProcessorConfiguration configuration,
     IStorageService storage,
     ISchedulerService scheduler,
     INotifierService notifier,
     ISupportService support,
     IAddInfoBuilder addInfoBuilder,
     IPdbStoreManager pdbStoreManager,
     IFileCompressor fileCompressor)
 {
     this.configuration   = configuration;
     this.storage         = storage;
     this.scheduler       = scheduler;
     this.notifier        = notifier;
     this.support         = support;
     this.addInfoBuilder  = addInfoBuilder;
     this.pdbStoreManager = pdbStoreManager;
     this.fileCompressor  = fileCompressor;
 }