2025-06-06 16:00:39 +08:00

23 lines
574 B
C#

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<S_Student>, IS_StudentRepository
{
public S_StudentRepository(VOLContext dbContext)
: base(dbContext)
{
}
public static IS_StudentRepository Instance
{
get { return AutofacContainerModule.GetService<IS_StudentRepository>(); }
}
}
}