Beispiel #1
0
 public WorkflowAction CancelledAction(ChildWorkflowCancelledEvent cancelledEvent)
 {
     return(_cancelledAction(cancelledEvent));
 }
Beispiel #2
0
        WorkflowAction IWorkflow.WorkflowAction(ChildWorkflowCancelledEvent cancelledEvent)
        {
            var childWorkflowItem = _allWorkflowItems.ChildWorkflowItem(cancelledEvent);

            return(childWorkflowItem.CancelledAction(cancelledEvent));
        }