mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-06-07 02:18:20 +08:00
152077e9b5
2. 补充了部分注释。 3. 修改了删除容器节点时,容器内子节点未正确删除的问题。
37 lines
930 B
C#
37 lines
930 B
C#
using Serein.Library.Api;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.NodeFlow.Services
|
|
{
|
|
/// <summary>
|
|
/// 流程API服务,用于外部调用流程接口
|
|
/// </summary>
|
|
internal class FlowApiService
|
|
{
|
|
private readonly IFlowEnvironment flowEnvironment;
|
|
private readonly FlowModelService flowModelService;
|
|
|
|
/// <summary>
|
|
/// 流程API服务构造函数
|
|
/// </summary>
|
|
/// <param name="flowEnvironment"></param>
|
|
/// <param name="flowModelService"></param>
|
|
public FlowApiService(IFlowEnvironment flowEnvironment,
|
|
FlowModelService flowModelService)
|
|
{
|
|
this.flowEnvironment = flowEnvironment;
|
|
this.flowModelService = flowModelService;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|