public PostSubmit(ISftpService sftpService, ISubmissionCosmosDbService submissionCosmosDbService, IStopCosmosDbService stopCosmosDbService, IUserProfileCosmosDbService userProfileCosmosDbService, ISubmissionServiceBusService serviceBusService)
 {
     _sftpService = sftpService;
     _submissionCosmosDbService  = submissionCosmosDbService;
     _stopCosmosDbService        = stopCosmosDbService;
     _userProfileCosmosDbService = userProfileCosmosDbService;
     _serviceBusService          = serviceBusService;
 }
Esempio n. 2
0
 public PutStop(IStopCosmosDbService stopCosmosDbService,
                IUserProfileCosmosDbService userProfileCosmosDbService,
                IStopAuditCosmosDbService stopAuditCosmosDbService)
 {
     _stopCosmosDbService        = stopCosmosDbService;
     _userProfileCosmosDbService = userProfileCosmosDbService;
     _stopAuditCosmosDbService   = stopAuditCosmosDbService;
 }
Esempio n. 3
0
 public GenerateCpraReport(IStopCosmosDbService stopCosmosDbService, IStopService stopService)
 {
     _storageConnectionString    = Environment.GetEnvironmentVariable("RipaStorage");
     _storageContainerNamePrefix = "cpra";
     _blobContainerClient        = GetBlobContainerClient();
     _stopCosmosDbService        = stopCosmosDbService;
     _stopService = stopService;
 }
Esempio n. 4
0
 public TimersSubmissionConsumer(IStopCosmosDbService stopCosmosDbService, ISftpService sftpService, IStopService stopService, ISubmissionServiceBusService submissionServiceBusService)
 {
     _stopCosmosDbService         = stopCosmosDbService;
     _sftpService                 = sftpService;
     _stopService                 = stopService;
     _submissionServiceBusService = submissionServiceBusService;
     _storageConnectionString     = Environment.GetEnvironmentVariable("RipaStorage");
     _storageContainerNamePrefix  = Environment.GetEnvironmentVariable("ContainerPrefixSubmissions");
     _sftpInputPath               = Environment.GetEnvironmentVariable("SftpInputPath");
     _blobContainerClient         = GetBlobContainerClient();
 }
 public SubmissionUtilities(IStopCosmosDbService stopCosmosDbService, ISubmissionCosmosDbService submissionCosmosDbService, ISftpService sftpService, ILogger logger)
 {
     _stopCosmosDbService       = stopCosmosDbService;
     _submissionCosmosDbService = submissionCosmosDbService;
     _sftpService                = sftpService;
     _sftpInputPath              = Environment.GetEnvironmentVariable("SftpInputPath");
     _logger                     = logger;
     _storageConnectionString    = Environment.GetEnvironmentVariable("RipaStorage");
     _storageContainerNamePrefix = Environment.GetEnvironmentVariable("ContainerPrefixSubmissions");
     _blobContainerClient        = GetBlobContainerClient();
 }
 public PostSubmitSearch(ISftpService sftpService, IStopService stopService, ISubmissionCosmosDbService submissionCosmosDbService, IStopCosmosDbService stopCosmosDbService, IUserProfileCosmosDbService userProfileCosmosDbService, ISubmissionServiceBusService submissionServiceBusService)
 {
     _sftpService = sftpService;
     _stopService = stopService;
     _submissionCosmosDbService  = submissionCosmosDbService;
     _stopCosmosDbService        = stopCosmosDbService;
     _userProfileCosmosDbService = userProfileCosmosDbService;
     _sftpInputPath               = Environment.GetEnvironmentVariable("SftpInputPath");
     _storageConnectionString     = Environment.GetEnvironmentVariable("RipaStorage");
     _storageContainerNamePrefix  = Environment.GetEnvironmentVariable("ContainerPrefixSubmissions");
     _submissionServiceBusService = submissionServiceBusService;
 }
Esempio n. 7
0
 public GetStop(IStopCosmosDbService stopCosmosDbService)
 {
     _stopCosmosDbService = stopCosmosDbService;
 }
Esempio n. 8
0
 public GetSubmissions(ISubmissionCosmosDbService submissionCosmosDbService, IStopCosmosDbService stopCosmosDbService)
 {
     _submissionCosmosDbService = submissionCosmosDbService;
     _stopCosmosDbService       = stopCosmosDbService;
 }
 public ServiceBusResultConsumer(IStopCosmosDbService stopCosmosDbService, IStopService stopService)
 {
     _stopCosmosDbService = stopCosmosDbService;
     _stopService         = stopService;
 }
 public GetErrorCodes(IStopCosmosDbService stopCosmosDbService)
 {
     _stopCosmosDbService = stopCosmosDbService;
 }