public PostSubmit(ISftpService sftpService, ISubmissionCosmosDbService submissionCosmosDbService, IStopCosmosDbService stopCosmosDbService, IUserProfileCosmosDbService userProfileCosmosDbService, ISubmissionServiceBusService serviceBusService) { _sftpService = sftpService; _submissionCosmosDbService = submissionCosmosDbService; _stopCosmosDbService = stopCosmosDbService; _userProfileCosmosDbService = userProfileCosmosDbService; _serviceBusService = serviceBusService; }
public PutStop(IStopCosmosDbService stopCosmosDbService, IUserProfileCosmosDbService userProfileCosmosDbService, IStopAuditCosmosDbService stopAuditCosmosDbService) { _stopCosmosDbService = stopCosmosDbService; _userProfileCosmosDbService = userProfileCosmosDbService; _stopAuditCosmosDbService = stopAuditCosmosDbService; }
public GenerateCpraReport(IStopCosmosDbService stopCosmosDbService, IStopService stopService) { _storageConnectionString = Environment.GetEnvironmentVariable("RipaStorage"); _storageContainerNamePrefix = "cpra"; _blobContainerClient = GetBlobContainerClient(); _stopCosmosDbService = stopCosmosDbService; _stopService = stopService; }
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; }
public GetStop(IStopCosmosDbService stopCosmosDbService) { _stopCosmosDbService = stopCosmosDbService; }
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; }