Ejemplo n.º 1
0
 internal JumpWorkflowAction(WorkflowItem triggerItem, WorkflowItem jumpToItem)
 {
     _triggerItem     = triggerItem;
     _jumpToItem      = jumpToItem;
     _scheduleAction  = ScheduleWorkflowItemAction.ScheduleByIgnoringWhen(jumpToItem);
     _triggeredAction = Default();
 }
Ejemplo n.º 2
0
 internal JumpWorkflowAction(WorkflowItem jumpToItem)
 {
     _scheduleAction = new ScheduleWorkflowItemAction(jumpToItem);
 }
Ejemplo n.º 3
0
 internal static ScheduleWorkflowItemAction Schedule(WorkflowItem workflowItem)
 {
     return(ScheduleWorkflowItemAction.ScheduleByConsideringWhen(workflowItem));
 }
 private bool Equals(ScheduleWorkflowItemAction other)
 {
     return(_workflowItem.Equals(other._workflowItem));
 }