23 lines
575 B
C#
23 lines
575 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_TeacherRepository : RepositoryBase<S_Teacher>, IS_TeacherRepository
|
|||
|
{
|
|||
|
public S_TeacherRepository(VOLContext dbContext)
|
|||
|
: base(dbContext)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
public static IS_TeacherRepository Instance
|
|||
|
{
|
|||
|
get { return AutofacContainerModule.GetService<IS_TeacherRepository>(); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|