1
This commit is contained in:
24
iMES.System/Repositories/flow/Sys_WorkFlowRepository.cs
Normal file
24
iMES.System/Repositories/flow/Sys_WorkFlowRepository.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowRepository编写代码
|
||||
*/
|
||||
using iMES.System.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.Repositories
|
||||
{
|
||||
public partial class Sys_WorkFlowRepository : RepositoryBase<Sys_WorkFlow> , ISys_WorkFlowRepository
|
||||
{
|
||||
public Sys_WorkFlowRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_WorkFlowRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_WorkFlowRepository>(); } }
|
||||
}
|
||||
}
|
||||
24
iMES.System/Repositories/flow/Sys_WorkFlowStepRepository.cs
Normal file
24
iMES.System/Repositories/flow/Sys_WorkFlowStepRepository.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowStepRepository编写代码
|
||||
*/
|
||||
using iMES.System.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.Repositories
|
||||
{
|
||||
public partial class Sys_WorkFlowStepRepository : RepositoryBase<Sys_WorkFlowStep> , ISys_WorkFlowStepRepository
|
||||
{
|
||||
public Sys_WorkFlowStepRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_WorkFlowStepRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_WorkFlowStepRepository>(); } }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableAuditLogRepository编写代码
|
||||
*/
|
||||
using iMES.System.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.Repositories
|
||||
{
|
||||
public partial class Sys_WorkFlowTableAuditLogRepository : RepositoryBase<Sys_WorkFlowTableAuditLog> , ISys_WorkFlowTableAuditLogRepository
|
||||
{
|
||||
public Sys_WorkFlowTableAuditLogRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_WorkFlowTableAuditLogRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_WorkFlowTableAuditLogRepository>(); } }
|
||||
}
|
||||
}
|
||||
24
iMES.System/Repositories/flow/Sys_WorkFlowTableRepository.cs
Normal file
24
iMES.System/Repositories/flow/Sys_WorkFlowTableRepository.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableRepository编写代码
|
||||
*/
|
||||
using iMES.System.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.Repositories
|
||||
{
|
||||
public partial class Sys_WorkFlowTableRepository : RepositoryBase<Sys_WorkFlowTable> , ISys_WorkFlowTableRepository
|
||||
{
|
||||
public Sys_WorkFlowTableRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_WorkFlowTableRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_WorkFlowTableRepository>(); } }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
||||
*Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableStepRepository编写代码
|
||||
*/
|
||||
using iMES.System.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.System.Repositories
|
||||
{
|
||||
public partial class Sys_WorkFlowTableStepRepository : RepositoryBase<Sys_WorkFlowTableStep> , ISys_WorkFlowTableStepRepository
|
||||
{
|
||||
public Sys_WorkFlowTableStepRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_WorkFlowTableStepRepository Instance
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_WorkFlowTableStepRepository>(); } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user