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_SurveyQuestionPoolOpti...

15 lines
644 B

namespace Tiobon.Core.Services;
/// <summary>
/// 问卷题库选项 (服务)
/// </summary>
public class Ghre_SurveyQuestionPoolOptionServices : BaseServices<Ghre_SurveyQuestionPoolOption, Ghre_SurveyQuestionPoolOptionDto, InsertGhre_SurveyQuestionPoolOptionInput, EditGhre_SurveyQuestionPoolOptionInput>, IGhre_SurveyQuestionPoolOptionServices
{
private readonly IBaseRepository<Ghre_SurveyQuestionPoolOption> _dal;
public Ghre_SurveyQuestionPoolOptionServices(ICaching caching, IBaseRepository<Ghre_SurveyQuestionPoolOption> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}