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

15 lines
581 B

namespace Tiobon.Core.Services;
/// <summary>
/// 培训记录明细 (服务)
/// </summary>
public class Ghre_StudyRecordDetailServices : BaseServices<Ghre_StudyRecordDetail, Ghre_StudyRecordDetailDto, InsertGhre_StudyRecordDetailInput, EditGhre_StudyRecordDetailInput>, IGhre_StudyRecordDetailServices
{
private readonly IBaseRepository<Ghre_StudyRecordDetail> _dal;
public Ghre_StudyRecordDetailServices(ICaching caching, IBaseRepository<Ghre_StudyRecordDetail> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}