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