1
This commit is contained in:
22
iMES.Builder/Repositories/Core/Sys_TableInfoRepository.cs
Normal file
22
iMES.Builder/Repositories/Core/Sys_TableInfoRepository.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using iMES.Builder.IRepositories;
|
||||
using iMES.Core.BaseProvider;
|
||||
using iMES.Core.EFDbContext;
|
||||
using iMES.Core.Extensions.AutofacManager;
|
||||
using iMES.Entity.DomainModels;
|
||||
|
||||
namespace iMES.Builder.Repositories
|
||||
{
|
||||
public partial class Sys_TableInfoRepository : RepositoryBase<Sys_TableInfo>, ISys_TableInfoRepository
|
||||
{
|
||||
public Sys_TableInfoRepository(SysDbContext dbContext)
|
||||
: base(dbContext)
|
||||
{
|
||||
|
||||
}
|
||||
public static ISys_TableInfoRepository GetService
|
||||
{
|
||||
get { return AutofacContainerModule.GetService<ISys_TableInfoRepository>(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user