Files
serein-flow/NodeFlow/Services/FlowApiService.cs

37 lines
928 B
C#
Raw Normal View History

2025-07-04 15:46:29 +08:00
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>
public 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;
}
}
}