23 lines
556 B
C#
23 lines
556 B
C#
using VOL.Sys.IRepositories;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Core.DbContext;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.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>(); }
|
|
}
|
|
}
|
|
}
|
|
|