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.
15 lines
554 B
15 lines
554 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 问卷调查题目 (服务)
|
|
/// </summary>
|
|
public class Ghre_SurveyQuestionServices : BaseServices<Ghre_SurveyQuestion, Ghre_SurveyQuestionDto, InsertGhre_SurveyQuestionInput, EditGhre_SurveyQuestionInput>, IGhre_SurveyQuestionServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_SurveyQuestion> _dal;
|
|
public Ghre_SurveyQuestionServices(ICaching caching, IBaseRepository<Ghre_SurveyQuestion> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |