You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
524 B
14 lines
524 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 试卷题目 (服务)
|
|
/// </summary>
|
|
public class Ghre_ExamPaperQuestionServices : BaseServices<Ghre_ExamPaperQuestion, Ghre_ExamPaperQuestionDto, InsertGhre_ExamPaperQuestionInput, EditGhre_ExamPaperQuestionInput>, IGhre_ExamPaperQuestionServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_ExamPaperQuestion> _dal;
|
|
public Ghre_ExamPaperQuestionServices(IBaseRepository<Ghre_ExamPaperQuestion> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
} |