using VOL.System.IRepositories; using VOL.Core.BaseProvider; using VOL.Core.EFDbContext; using VOL.Core.Extensions.AutofacManager; using VOL.Entity.DomainModels; using VOL.Entity.DomainModels.Business.People; namespace VOL.System.Repositories { public partial class S_SchoolNatureRepository : RepositoryBase, IS_SchoolNatureRepository { public S_SchoolNatureRepository(VOLContext dbContext) : base(dbContext) { } public static IS_SchoolNatureRepository Instance { get { return AutofacContainerModule.GetService(); } } } }