namespace Tiobon.Core.Services; /// /// 问卷调查题目 (服务) /// public class Ghre_SurveyQuestionServices : BaseServices, IGhre_SurveyQuestionServices { private readonly IBaseRepository _dal; public Ghre_SurveyQuestionServices(ICaching caching, IBaseRepository dal) { this._dal = dal; base.BaseDal = dal; base._caching = caching; } }