Exemplo n.º 1
0
 public BasicBackend(IBasicBackendConfiguration configuration, IAddInfoBuilder addInfoBuilder,
                     IEnumerable <IGatewayVersionExtractor> gatewayVersionExtractors)
 {
     this.configuration            = configuration;
     this.addInfoBuilder           = addInfoBuilder;
     this.gatewayVersionExtractors = gatewayVersionExtractors;
 }
Exemplo n.º 2
0
 public BasicBackend(IBasicBackendConfiguration configuration, IAddInfoBuilder addInfoBuilder,
     IEnumerable<IGatewayVersionExtractor> gatewayVersionExtractors)
 {
     this.configuration = configuration;
     this.addInfoBuilder = addInfoBuilder;
     this.gatewayVersionExtractors = gatewayVersionExtractors;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
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;
 }
Exemplo n.º 5
0
 public BasicBackend(IBasicBackendConfiguration configuration, IAddInfoBuilder addInfoBuilder)
 {
     this.configuration = configuration;
     this.addInfoBuilder = addInfoBuilder;
 }