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
581 B
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;
|
|
}
|
|
} |