コード例 #1
0
 public AnalysisService(DumpStorageFilebased dumpStorage, DumpRepository dumpRepo, PathHelper pathHelper, IOptions <SuperDumpSettings> settings)
 {
     this.dumpStorage = dumpStorage;
     this.dumpRepo    = dumpRepo;
     this.pathHelper  = pathHelper;
     this.settings    = settings;
 }
コード例 #2
0
ファイル: AnalysisService.cs プロジェクト: jbmercha/superdump
 public AnalysisService(DumpStorageFilebased dumpStorage, DumpRepository dumpRepo, BundleRepository bundleRepo, PathHelper pathHelper, IOptions <SuperDumpSettings> settings, NotificationService notifications, ElasticSearchService elasticSearch)
 {
     this.dumpStorage   = dumpStorage;
     this.dumpRepo      = dumpRepo;
     this.bundleRepo    = bundleRepo;
     this.pathHelper    = pathHelper;
     this.settings      = settings;
     this.notifications = notifications;
     this.elasticSearch = elasticSearch;
 }
コード例 #3
0
 public BundleStorageFilebased(DumpStorageFilebased dumpStorage, PathHelper pathHelper)
 {
     this.dumpStorage = dumpStorage;
     this.pathHelper  = pathHelper;
 }
コード例 #4
0
 public DumpRepository(DumpStorageFilebased storage, BundleRepository bundleRepo, PathHelper pathHelper)
 {
     this.storage    = storage;
     this.bundleRepo = bundleRepo;
     this.pathHelper = pathHelper;
 }