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_SurveyRecordServices.cs

15 lines
535 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghre_SurveyRecord (服务)
/// </summary>
public class Ghre_SurveyRecordServices : BaseServices<Ghre_SurveyRecord, Ghre_SurveyRecordDto, InsertGhre_SurveyRecordInput, EditGhre_SurveyRecordInput>, IGhre_SurveyRecordServices
{
private readonly IBaseRepository<Ghre_SurveyRecord> _dal;
public Ghre_SurveyRecordServices(ICaching caching, IBaseRepository<Ghre_SurveyRecord> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}