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
560 B
15 lines
560 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 面试单评估 (服务)
|
|
/// </summary>
|
|
public class Ghrh_InterviewAssessServices : BaseServices<Ghrh_InterviewAssess, Ghrh_InterviewAssessDto, InsertGhrh_InterviewAssessInput, EditGhrh_InterviewAssessInput>, IGhrh_InterviewAssessServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_InterviewAssess> _dal;
|
|
public Ghrh_InterviewAssessServices(ICaching caching, IBaseRepository<Ghrh_InterviewAssess> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |