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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghre/Ghre_ExamPaperQuestionServi...

21 lines
697 B

using Tiobon.Core.IServices;
using Tiobon.Core.Model.Models;
using Tiobon.Core.Services.BASE;
using Tiobon.Core.IRepository.Base;
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;
}
}
}