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_QuestionAnswerServices.cs

14 lines
497 B

namespace Tiobon.Core.Services;
/// <summary>
/// 题目答案 (服务)
/// </summary>
public class Ghre_QuestionAnswerServices : BaseServices<Ghre_QuestionAnswer, Ghre_QuestionAnswerDto, InsertGhre_QuestionAnswerInput, EditGhre_QuestionAnswerInput>, IGhre_QuestionAnswerServices
{
private readonly IBaseRepository<Ghre_QuestionAnswer> _dal;
public Ghre_QuestionAnswerServices(IBaseRepository<Ghre_QuestionAnswer> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}