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