예제 #1
0
 public Executor(Arguments arguments, WorkflowRuntimeContext context)
 {
     this.arguments = arguments;
     this.context   = context;
 }
예제 #2
0
 /// <summary>
 /// Creates the Executor instance for this workstep. This class will do the work of the Workstep.
 /// </summary>
 /// <param name="argumentPackage">the argumentpackage to pass to the Executor</param>
 /// <param name="workflowRuntimeContext">the context to pass to the Executor</param>
 /// <returns>The Executor instance.</returns>
 public Slb.Ocean.Petrel.Workflow.Executor GetExecutor(object argumentPackage, WorkflowRuntimeContext workflowRuntimeContext)
 {
     return(new Executor(argumentPackage as Arguments, workflowRuntimeContext));
 }