Example #1
0
 public ValidateForRun(IRepositoryFactory repositoryFactory,
                       IISRSettingsRepository isrSettingsRepository, IRSSettingsRepository rsSettingsRepository,
                       IOutputFileRepository outputFileRepository, IUniverseRepository universeRepository,
                       ISpotRepository spotRepository, IScheduleRepository scheduleRepository,
                       IRatingsScheduleRepository ratingsScheduleRepository, IProductRepository productRepository,
                       IClashRepository clashRepository,
                       ISystemMessageRepository systemMessageRepository,
                       IAutoBooks autoBooks, ITenantSettingsRepository tenantSettingsRepository, IClearanceRepository clearanceRepository,
                       IFeatureManager featureManager, ISystemLogicalDateService systemLogicalDateService)
 {
     _repositoryFactory         = repositoryFactory;
     _isrSettingsRepository     = isrSettingsRepository;
     _rsSettingsRepository      = rsSettingsRepository;
     _outputFileRepository      = outputFileRepository;
     _universeRepository        = universeRepository;
     _spotRepository            = spotRepository;
     _scheduleRepository        = scheduleRepository;
     _ratingsScheduleRepository = ratingsScheduleRepository;
     _productRepository         = productRepository;
     _clashRepository           = clashRepository;
     _systemMessageRepository   = systemMessageRepository;
     _autoBooks = autoBooks;
     _tenantSettingsRepository = tenantSettingsRepository;
     _clearanceRepository      = clearanceRepository;
     _featureManager           = featureManager;
     _systemLogicalDateService = systemLogicalDateService;
 }
Example #2
0
 public RunInstanceCreator(
     IRepositoryFactory repositoryFactory,
     IAuditEventRepository auditEventRepository,
     IAutoBookInputHandler autoBookInputHandler,
     IAutoBookOutputHandler autoBookOutputHandler,
     RunCompletionNotifier runCompletionNotifier,
     ScenarioSnapshotGenerator scenarioSnapshotGenerator,
     ISynchronizationService synchronizationService,
     IPipelineAuditEventRepository pipelineAuditEventRepository,
     IBRSIndicatorManager brsIndicatorManager,
     ILandmarkRunService landmarkRunService,
     IAutoBooks autoBooks,
     IConfiguration configuration)
 {
     _repositoryFactory            = repositoryFactory;
     _auditEventRepository         = auditEventRepository;
     _autoBookInputHandler         = autoBookInputHandler;
     _autoBookOutputHandler        = autoBookOutputHandler;
     _runCompletionNotifier        = runCompletionNotifier;
     _scenarioSnapshotGenerator    = scenarioSnapshotGenerator;
     _synchronizationService       = synchronizationService;
     _pipelineAuditEventRepository = pipelineAuditEventRepository;
     _brsIndicatorManager          = brsIndicatorManager;
     _landmarkRunService           = landmarkRunService;
     _autoBooks     = autoBooks;
     _configuration = configuration;
 }
Example #3
0
 public AutoBookDeleteBackgroundJob(
     IAutoBooks autoBooks,
     IAuditEventRepository auditEventRepository,
     IEnumerable <ITenantDbContext> tenantDbContexts)
 {
     _autoBooks            = autoBooks;
     _auditEventRepository = auditEventRepository;
     _tenantDbContexts     = tenantDbContexts;
 }
Example #4
0
 public RunScenarioTask(
     IAutoBooks autoBooks,
     IRepositoryFactory repositoryFactory,
     IAuditEventRepository auditEventRepository,
     RunInstanceCreator runInstanceCreator)
 {
     _autoBooks            = autoBooks;
     _repositoryFactory    = repositoryFactory;
     _auditEventRepository = auditEventRepository;
     _runInstanceCreator   = runInstanceCreator;
 }
Example #5
0
 public RunExecuteTest(IRunManager runManager, IAutoBooks autoBooks, IRepositoryFactory repositoryFactory, Guid templateRunId,
                       IAuditEventRepository auditEventRepository, int scenarioCompleteTimeoutMins,
                       IIdentityGeneratorResolver identityGeneratorResolver)
 {
     _runManager                  = runManager;
     _autoBooks                   = autoBooks;
     _repositoryFactory           = repositoryFactory;
     _templateRunId               = templateRunId;
     _auditEventRepository        = auditEventRepository;
     _scenarioCompleteTimeoutMins = scenarioCompleteTimeoutMins;
     _identityGeneratorResolver   = identityGeneratorResolver;
 }
 public ManageAutoBooksCreateAndDelete(
     IAuditEventRepository auditEventRepository,
     IConfiguration configuration,
     IAutoBookInstanceConfigurationRepository autoBookInstanceConfigurationRepository,
     IAutoBooks autoBooks,
     IRunRepository runRepository)
 {
     _auditEventRepository = auditEventRepository;
     _configuration        = configuration;
     _autoBookInstanceConfigurationRepository = autoBookInstanceConfigurationRepository;
     _autoBooks     = autoBooks;
     _runRepository = runRepository;
 }
Example #7
0
 public SystemTestsManager(IConfiguration configuration, IRunManager runManager, AWSSettings awsSettings, ICloudStorage cloudStorage,
                           IAuditEventRepository auditEventRepository, IAutoBooks autoBooks, IRepositoryFactory repositoryFactory,
                           IIdentityGeneratorResolver identityGeneratorResolver)
 {
     _applicationConfiguration = configuration;
     _runManager                = runManager;
     _awsSettings               = awsSettings;
     _auditEventRepository      = auditEventRepository;
     _autoBooks                 = autoBooks;
     _cloudStorage              = cloudStorage;
     _repositoryFactory         = repositoryFactory;
     _identityGeneratorResolver = identityGeneratorResolver;
 }
Example #8
0
 public AutoBookDeleteTaskExecutor(IAutoBooks autoBooks, IRepositoryFactory repositoryFactory)
 {
     _autoBooks         = autoBooks;
     _repositoryFactory = repositoryFactory;
 }
Example #9
0
 public AutoBookTest(IAutoBooks autoBooks, IRepositoryFactory repositoryFactory)
 {
     _autoBooks         = autoBooks;
     _repositoryFactory = repositoryFactory;
 }
Example #10
0
 public ScenarioSnapshotGenerator(RootFolder rootFolder, IAutoBooks autoBooks)
 {
     _rootFolder = rootFolder;
     _autoBooks  = autoBooks;
 }
Example #11
0
 public ComponentVersionTest(IAutoBooks autoBooks)
 {
     _autoBooks = autoBooks;
 }
Example #12
0
 public LogController(IAutoBooks autoBooks) => _autoBooks = autoBooks;