public CreateProcessFileCommandHandler(
     ILogger <CreateProcessFileCommandHandler> logger,
     IProcessFileCommandRepository processFileCommandRepository,
     IOptions <BPMNServerOptions> options)
 {
     _logger = logger;
     _processFileCommandRepository = processFileCommandRepository;
     _options = options.Value;
 }
Ejemplo n.º 2
0
 public CreateProcessFileCommandHandler(
     ILogger <CreateProcessFileCommandHandler> logger,
     ICommitAggregateHelper commitAggregateHelper,
     IOptions <BPMNServerOptions> options)
 {
     _logger = logger;
     _commitAggregateHelper = commitAggregateHelper;
     _options = options.Value;
 }
Ejemplo n.º 3
0
 public WsHumanTaskHandler(IOptions <BPMNServerOptions> options,
                           IHttpClientFactory httpClientFactory)
 {
     _options           = options.Value;
     _httpClientFactory = httpClientFactory;
 }