Files
iMES_Net/iMES.System/Services/flow/Sys_WorkFlowTableAuditLogService.cs

26 lines
936 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
/*
*,
*Partial文件夹下Sys_WorkFlowTableAuditLogService与ISys_WorkFlowTableAuditLogService中编写
*/
using iMES.System.IRepositories;
using iMES.System.IServices;
using iMES.Core.BaseProvider;
using iMES.Core.Extensions.AutofacManager;
using iMES.Entity.DomainModels;
namespace iMES.System.Services
{
public partial class Sys_WorkFlowTableAuditLogService : ServiceBase<Sys_WorkFlowTableAuditLog, ISys_WorkFlowTableAuditLogRepository>
, ISys_WorkFlowTableAuditLogService, IDependency
{
public Sys_WorkFlowTableAuditLogService(ISys_WorkFlowTableAuditLogRepository repository)
: base(repository)
{
Init(repository);
}
public static ISys_WorkFlowTableAuditLogService Instance
{
get { return AutofacContainerModule.GetService<ISys_WorkFlowTableAuditLogService>(); } }
}
}