23 lines
550 B
C#
23 lines
550 B
C#
using LM.Sys.IRepositories;
|
|
using LM.Core.BaseProvider;
|
|
using LM.Core.Extensions.AutofacManager;
|
|
using LM.Core.DbContext;
|
|
using LM.Entity.DomainModels;
|
|
|
|
namespace LM.Sys.Repositories
|
|
{
|
|
public partial class Sys_LogRepository : RepositoryBase<Sys_Log>, ISys_LogRepository
|
|
{
|
|
public Sys_LogRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
public static ISys_LogRepository GetService
|
|
{
|
|
get { return AutofacContainerModule.GetService<ISys_LogRepository>(); }
|
|
}
|
|
}
|
|
}
|
|
|