24 lines
602 B
C#
24 lines
602 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.Business.IRepositories;
|
|||
|
|
|||
|
namespace VOL.System.Repositories
|
|||
|
{
|
|||
|
public partial class S_SchoolRepository : RepositoryBase<S_School>, IS_SchoolRepository
|
|||
|
{
|
|||
|
public S_SchoolRepository(VOLContext dbContext)
|
|||
|
: base(dbContext)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
public static IS_SchoolRepository Instance
|
|||
|
{
|
|||
|
get { return AutofacContainerModule.GetService<IS_SchoolRepository>(); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|