using WIDESEA.Services.IRepositories;
|
using WIDESEA.Core.BaseProvider;
|
using WIDESEA.Core.Extensions.AutofacManager;
|
using WIDESEA.Core.EFDbContext;
|
using WIDESEA.Entity.DomainModels;
|
|
namespace WIDESEA.Services.Repositories
|
{
|
public partial class Sys_LogRepository : RepositoryBase<Sys_Log>, ISys_LogRepository
|
{
|
public Sys_LogRepository(WIDESEAContext dbContext)
|
: base(dbContext)
|
{
|
|
}
|
public static ISys_LogRepository GetService
|
{
|
get { return AutofacContainerModule.GetService<ISys_LogRepository>(); }
|
}
|
}
|
}
|