Laservall_manager_system/LM.Sys/Services/flow/Sys_WorkFlowStepService.cs

28 lines
869 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
/*
*Authorjxx
*Contact283591387@qq.com
*,
*Partial文件夹下Sys_WorkFlowStepService与ISys_WorkFlowStepService中编写
*/
2025-10-09 16:26:44 +08:00
using LM.Sys.IRepositories;
using LM.Sys.IServices;
using LM.Core.BaseProvider;
using LM.Core.Extensions.AutofacManager;
using LM.Entity.DomainModels;
2025-09-25 14:37:10 +08:00
2025-10-09 16:26:44 +08:00
namespace LM.Sys.Services
2025-09-25 14:37:10 +08:00
{
public partial class Sys_WorkFlowStepService : ServiceBase<Sys_WorkFlowStep, ISys_WorkFlowStepRepository>
, ISys_WorkFlowStepService, IDependency
{
public Sys_WorkFlowStepService(ISys_WorkFlowStepRepository repository)
: base(repository)
{
Init(repository);
}
public static ISys_WorkFlowStepService Instance
{
get { return AutofacContainerModule.GetService<ISys_WorkFlowStepService>(); } }
}
}