public AddCaseFileCommandHandler(
     ICaseFileCommandRepository caseFileCommandRepository,
     IOptions <CMMNServerOptions> options)
 {
     _caseFileCommandRepository = caseFileCommandRepository;
     _options = options.Value;
 }
Beispiel #2
0
 public WSHumanTaskHandler(IOptions <CMMNServerOptions> options, CaseManagement.Common.Factories.IHttpClientFactory httpClientFactory)
 {
     _options           = options.Value;
     _httpClientFactory = httpClientFactory;
 }
Beispiel #3
0
 public AddCaseFileCommandHandler(ICommitAggregateHelper commitAggregateHelper, IOptions <CMMNServerOptions> options)
 {
     _commitAggregateHelper = commitAggregateHelper;
     _options = options.Value;
 }
Beispiel #4
0
 public ProcessScheduleMsgJob(IMessageBroker messageBroker, IOptions <CMMNServerOptions> options)
 {
     _messageBroker = messageBroker;
     _options       = options.Value;
 }