using WIDESEA.Services.IRepositories;
|
using WIDESEA.Services.IServices;
|
using WIDESEA.Core.BaseProvider;
|
using WIDESEA.Core.Extensions.AutofacManager;
|
using WIDESEA.Entity.DomainModels;
|
|
namespace WIDESEA.Services.Services
|
{
|
public partial class Sys_LogService : ServiceBase<Sys_Log, ISys_LogRepository>, ISys_LogService, IDependency
|
{
|
public Sys_LogService(ISys_LogRepository repository)
|
: base(repository)
|
{
|
Init(repository);
|
}
|
public static ISys_LogService Instance
|
{
|
get { return AutofacContainerModule.GetService<ISys_LogService>(); }
|
}
|
}
|
}
|