32 lines
819 B
C#
32 lines
819 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using VOL.Ai.IRepositories;
|
|||
|
using VOL.Business.IRepositories;
|
|||
|
using VOL.Core.BaseProvider;
|
|||
|
using VOL.Core.EFDbContext;
|
|||
|
using VOL.Core.Extensions.AutofacManager;
|
|||
|
using VOL.Entity.DomainModels;
|
|||
|
|
|||
|
namespace VOL.Ai.Repositories
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 测评考级数据成绩上传
|
|||
|
/// </summary>
|
|||
|
public partial class LevelExamDataRepository : RepositoryBase<Ai_LevelExamData>, ILevelExamDataRepository
|
|||
|
{
|
|||
|
public LevelExamDataRepository(VOLContext dbContext)
|
|||
|
: base(dbContext)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public static ILevelExamDataRepository Instance
|
|||
|
{
|
|||
|
get { return AutofacContainerModule.GetService<ILevelExamDataRepository>(); }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|