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
536 B
15 lines
536 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 问卷调查选项 (服务)
|
|
/// </summary>
|
|
public class Ghre_SurveyOptionServices : BaseServices<Ghre_SurveyOption, Ghre_SurveyOptionDto, InsertGhre_SurveyOptionInput, EditGhre_SurveyOptionInput>, IGhre_SurveyOptionServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_SurveyOption> _dal;
|
|
public Ghre_SurveyOptionServices(ICaching caching, IBaseRepository<Ghre_SurveyOption> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |