Exemplo n.º 1
0
 public WorkflowAction StartedAction(ChildWorkflowStartedEvent startedEvent)
 {
     return(_startedAction(startedEvent));
 }
Exemplo n.º 2
0
        WorkflowAction IWorkflow.WorkflowAction(ChildWorkflowStartedEvent startedEvent)
        {
            var childWorkflowItem = _allWorkflowItems.ChildWorkflowItem(startedEvent);

            return(childWorkflowItem.StartedAction(startedEvent));
        }