예제 #1
0
 public WorkflowExecutionLog(IWorkflowExecutionLogStore store, IIdGenerator idGenerator, IClock clock, IPublisher publisher)
 {
     _store       = store;
     _idGenerator = idGenerator;
     _clock       = clock;
     _publisher   = publisher;
 }
예제 #2
0
파일: Get.cs 프로젝트: jruckert/elsa-core
 public Get(IWorkflowExecutionLogStore workflowExecutionLogStore, IEndpointContentSerializerSettingsProvider serializerSettingsProvider)
 {
     _workflowExecutionLogStore  = workflowExecutionLogStore;
     _serializerSettingsProvider = serializerSettingsProvider;
 }
예제 #3
0
 public WorkflowExecutionLog(IWorkflowExecutionLogStore store, IIdGenerator idGenerator, IClock clock)
 {
     _store       = store;
     _idGenerator = idGenerator;
     _clock       = clock;
 }
예제 #4
0
파일: Get.cs 프로젝트: tle5/elsa-core
 public Get(IWorkflowExecutionLogStore workflowExecutionLogStore)
 {
     _workflowExecutionLogStore = workflowExecutionLogStore;
 }