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

15 lines
575 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghre_ExamRecordDetail (服务)
/// </summary>
public class Ghre_ExamRecordDetailServices : BaseServices<Ghre_ExamRecordDetail, Ghre_ExamRecordDetailDto, InsertGhre_ExamRecordDetailInput, EditGhre_ExamRecordDetailInput>, IGhre_ExamRecordDetailServices
{
private readonly IBaseRepository<Ghre_ExamRecordDetail> _dal;
public Ghre_ExamRecordDetailServices(ICaching caching, IBaseRepository<Ghre_ExamRecordDetail> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}