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/Ghrh/Ghrh_InterviewAssessDetailS...

15 lines
620 B

namespace Tiobon.Core.Services;
/// <summary>
/// 面试单评估明细 (服务)
/// </summary>
public class Ghrh_InterviewAssessDetailServices : BaseServices<Ghrh_InterviewAssessDetail, Ghrh_InterviewAssessDetailDto, InsertGhrh_InterviewAssessDetailInput, EditGhrh_InterviewAssessDetailInput>, IGhrh_InterviewAssessDetailServices
{
private readonly IBaseRepository<Ghrh_InterviewAssessDetail> _dal;
public Ghrh_InterviewAssessDetailServices(ICaching caching, IBaseRepository<Ghrh_InterviewAssessDetail> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}