24 lines
651 B
C#
24 lines
651 B
C#
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<S_SchoolNature>, IS_SchoolNatureRepository
|
|
{
|
|
public S_SchoolNatureRepository(VOLContext dbContext)
|
|
: base(dbContext)
|
|
{
|
|
|
|
}
|
|
public static IS_SchoolNatureRepository Instance
|
|
{
|
|
get { return AutofacContainerModule.GetService<IS_SchoolNatureRepository>(); }
|
|
}
|
|
}
|
|
}
|
|
|