Exemple #1
0
 public WorkflowExecutionLog(IWorkflowExecutionLogStore store, IIdGenerator idGenerator, IClock clock, IPublisher publisher)
 {
     _store       = store;
     _idGenerator = idGenerator;
     _clock       = clock;
     _publisher   = publisher;
 }
Exemple #2
0
 public Get(IWorkflowExecutionLogStore workflowExecutionLogStore, IEndpointContentSerializerSettingsProvider serializerSettingsProvider)
 {
     _workflowExecutionLogStore  = workflowExecutionLogStore;
     _serializerSettingsProvider = serializerSettingsProvider;
 }
 public WorkflowExecutionLog(IWorkflowExecutionLogStore store, IIdGenerator idGenerator, IClock clock)
 {
     _store       = store;
     _idGenerator = idGenerator;
     _clock       = clock;
 }
Exemple #4
0
 public Get(IWorkflowExecutionLogStore workflowExecutionLogStore)
 {
     _workflowExecutionLogStore = workflowExecutionLogStore;
 }