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