Esempio n. 1
0
 public HomeController(
     SuperDumpRepository superDumpRepo,
     BundleRepository bundleRepo,
     DumpRepository dumpRepo,
     IDumpStorage dumpStorage,
     IOptions <SuperDumpSettings> settings,
     PathHelper pathHelper,
     RelationshipRepository relationshipRepo,
     SimilarityService similarityService,
     ElasticSearchService elasticService,
     ILoggerFactory loggerFactory,
     IAuthorizationHelper authorizationHelper,
     JiraIssueRepository jiraIssueRepository,
     SearchService searchService,
     DownloadService downloadService)
 {
     this.superDumpRepo     = superDumpRepo;
     this.bundleRepo        = bundleRepo;
     this.dumpRepo          = dumpRepo;
     this.dumpStorage       = dumpStorage;
     this.settings          = settings.Value;
     this.pathHelper        = pathHelper;
     this.relationshipRepo  = relationshipRepo;
     this.similarityService = similarityService;
     logger = loggerFactory.CreateLogger <HomeController>();
     this.authorizationHelper = authorizationHelper;
     this.jiraIssueRepository = jiraIssueRepository;
     this.searchService       = searchService;
     this.downloadService     = downloadService;
 }
Esempio n. 2
0
 public DumpsController(SuperDumpRepository superDumpRepo, BundleRepository bundleRepo, DumpRepository dumpRepo, ILoggerFactory loggerFactory)
 {
     this.superDumpRepo = superDumpRepo;
     this.bundleRepo    = bundleRepo;
     this.dumpRepo      = dumpRepo;
     logger             = loggerFactory.CreateLogger <DumpsController>();
 }
Esempio n. 3
0
 public HomeController(IHostingEnvironment environment, SuperDumpRepository superDumpRepo, BundleRepository bundleRepo, DumpRepository dumpRepo, DumpStorageFilebased dumpStorage, PathHelper pathHelper)
 {
     this.environment   = environment;
     this.superDumpRepo = superDumpRepo;
     this.bundleRepo    = bundleRepo;
     this.dumpRepo      = dumpRepo;
     this.dumpStorage   = dumpStorage;
     this.pathHelper    = pathHelper;
 }
Esempio n. 4
0
 public HomeController(IHostingEnvironment environment, SuperDumpRepository superDumpRepo, BundleRepository bundleRepo, DumpRepository dumpRepo, DumpStorageFilebased dumpStorage, IOptions <SuperDumpSettings> settings, PathHelper pathHelper, RelationshipRepository relationshipRepo, SimilarityService similarityService)
 {
     this.environment       = environment;
     this.superDumpRepo     = superDumpRepo;
     this.bundleRepo        = bundleRepo;
     this.dumpRepo          = dumpRepo;
     this.dumpStorage       = dumpStorage;
     this.settings          = settings.Value;
     this.pathHelper        = pathHelper;
     this.relationshipRepo  = relationshipRepo;
     this.similarityService = similarityService;
 }
Esempio n. 5
0
 public DumpsController(
     SuperDumpRepository superDumpRepo,
     BundleRepository bundleRepo,
     DumpRepository dumpRepo,
     ILoggerFactory loggerFactory,
     SearchService searchService)
 {
     this.superDumpRepo = superDumpRepo;
     this.bundleRepo    = bundleRepo;
     this.dumpRepo      = dumpRepo;
     logger             = loggerFactory.CreateLogger <DumpsController>();
     this.searchService = searchService;
 }
Esempio n. 6
0
 public HomeController(IHostingEnvironment environment, SuperDumpRepository superDumpRepo, BundleRepository bundleRepo, DumpRepository dumpRepo, DumpStorageFilebased dumpStorage, IOptions <SuperDumpSettings> settings, PathHelper pathHelper, RelationshipRepository relationshipRepo, SimilarityService similarityService, ILoggerFactory loggerFactory, IAuthorizationHelper authorizationHelper)
 {
     this.environment       = environment;
     this.superDumpRepo     = superDumpRepo;
     this.bundleRepo        = bundleRepo;
     this.dumpRepo          = dumpRepo;
     this.dumpStorage       = dumpStorage;
     this.settings          = settings.Value;
     this.pathHelper        = pathHelper;
     this.relationshipRepo  = relationshipRepo;
     this.similarityService = similarityService;
     logger = loggerFactory.CreateLogger <HomeController>();
     this.authorizationHelper = authorizationHelper;
 }
Esempio n. 7
0
 public DumpsController(SuperDumpRepository superDumpRepo, BundleRepository bundleRepo, DumpRepository dumpRepo)
 {
     this.superDumpRepo = superDumpRepo;
     this.bundleRepo    = bundleRepo;
     this.dumpRepo      = dumpRepo;
 }
Esempio n. 8
0
 public WebTermHandler(WebSocketConnectionManager webSocketConnectionManager, SuperDumpRepository superdumpRepo, DumpRepository dumpRepo, IOptions <SuperDumpSettings> settings) : base(webSocketConnectionManager)
 {
     this.superdumpRepo = superdumpRepo;
     this.dumpRepo      = dumpRepo;
     this.settings      = settings;
 }