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

15 lines
595 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghre_SurveyRecordOption (服务)
/// </summary>
public class Ghre_SurveyRecordOptionServices : BaseServices<Ghre_SurveyRecordOption, Ghre_SurveyRecordOptionDto, InsertGhre_SurveyRecordOptionInput, EditGhre_SurveyRecordOptionInput>, IGhre_SurveyRecordOptionServices
{
private readonly IBaseRepository<Ghre_SurveyRecordOption> _dal;
public Ghre_SurveyRecordOptionServices(ICaching caching, IBaseRepository<Ghre_SurveyRecordOption> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}