Example #1
0
 protected virtual object ParseResult(IActionContext context, IDynamicValueService dynamicValueService)
 {
     _ = context ?? throw new ArgumentNullException(nameof(context));
     _ = dynamicValueService ?? throw new ArgumentNullException(nameof(dynamicValueService));
     if (this.WorkflowInfo == null) return null;
     return dynamicValueService.GetDynamicValue(this.WorkflowInfo.Output, context.Parameters);
 }
 public DefaultGroupRunnerService(IActionExecuterService actionExecuterService, IPublishValueService publishValueService, IIdGenService idGenService, IDynamicValueService dynamicValueService, IConvertService convertService, WorkflowOption workflowOption)
 {
     this.actionExecuterService = actionExecuterService;
     this.publishValueService   = publishValueService;
     this.idGenService          = idGenService;
     this.dynamicValueService   = dynamicValueService;
     this.convertService        = convertService;
     this.workflowOption        = workflowOption;
 }
 public DefaultPublishValueService(IDynamicValueService dynamicValueService, IConvertService convertService)
 {
     this.dynamicValueService = dynamicValueService;
     this.convertService      = convertService;
 }