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

15 lines
536 B

namespace Tiobon.Core.Services;
/// <summary>
/// 面试工单日志 (服务)
/// </summary>
public class Ghrh_InterviewLogServices : BaseServices<Ghrh_InterviewLog, Ghrh_InterviewLogDto, InsertGhrh_InterviewLogInput, EditGhrh_InterviewLogInput>, IGhrh_InterviewLogServices
{
private readonly IBaseRepository<Ghrh_InterviewLog> _dal;
public Ghrh_InterviewLogServices(ICaching caching, IBaseRepository<Ghrh_InterviewLog> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}