public HostedStartupService(
     IMarkSessionRepository markSessionRepository,
     IMarkSessionHandler markSessionHandler,
     ILoggerService loggerService
     )
 {
     _markSessionRepository = markSessionRepository;
     _markSessionHandler    = markSessionHandler;
     _loggerService         = loggerService;
 }
 public MarkSessionHandler(
     IMarkSessionRepository markSessionRepository,
     IDependantResourceHandler dependantResourceHandler,
     IBackgroundJobsHandler backgroundJobsHandler,
     ILoggerService loggerService
     )
 {
     _markSessionRepository    = markSessionRepository;
     _dependantResourceHandler = dependantResourceHandler;
     _backgroundJobsHandler    = backgroundJobsHandler;
     _loggerService            = loggerService;
 }
Exemple #3
0
 public DependantResourceHandler(
     IProjectClient projectClient,
     IMarkSessionRepository markSessionRepository,
     IMetadataClient metadataClient,
     IScenarioClient scenarioClient,
     IResultConfigClient resultConfigClient,
     ISimPlanClient simPlanClient,
     ISimRunClient simRunClient,
     IResultDataClient resultDataClient
     )
 {
     _projectClient         = projectClient;
     _markSessionRepository = markSessionRepository;
     _metadataClient        = metadataClient;
     _scenarioClient        = scenarioClient;
     _resultConfigClient    = resultConfigClient;
     _simPlanClient         = simPlanClient;
     _simRunClient          = simRunClient;
     _resultDataClient      = resultDataClient;
 }