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, ISys_LogService, IDependency { public Sys_LogService(ISys_LogRepository repository) : base(repository) { Init(repository); } public static ISys_LogService Instance { get { return AutofacContainerModule.GetService(); } } } }