YD_SmartSports.Api/VOL.Ai/Repositories/LevelExamDataRepository.cs

32 lines
819 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
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>(); }
}
}
}