コード例 #1
0
 public CompleteComponentWorkCommandHandler(IMessageSenderFactory messageSenderFactory, IComponentChannelIdentifierRepository componentChannelIdentifierRepository, IStagingStoreContainer stagingStoreContainer, IComponentPlanExecutor componentPlanExecutor)
 {
     this._stagingStoreContainer = stagingStoreContainer;
     this._componentPlanExecutor = componentPlanExecutor;
     this._messageSenderFactory  = messageSenderFactory;
     this._componentChannelIdentifierRepository = componentChannelIdentifierRepository;
 }
コード例 #2
0
 public StartIngestCommandHandler(IMessageSenderFactory messageSenderFactory, IComponentChannelIdentifierRepository componentChannelIdentifierRepository, ISubmissionAgreementStore submissionAgreementStore, IStagingStoreContainer stagingStoreContainer, IComponentPlanExecutor componentPlanExecutor)
 {
     this._submissionAgreementStore             = submissionAgreementStore;
     this._stagingStoreContainer                = stagingStoreContainer;
     this._componentPlanExecutor                = componentPlanExecutor;
     this._messageSenderFactory                 = messageSenderFactory;
     this._componentChannelIdentifierRepository = componentChannelIdentifierRepository;
 }