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/Tiobon.Core.Services/Ghrh/Ghrh_ResumeStatementService...

15 lines
557 B

namespace Tiobon.Core.Services;
/// <summary>
/// 简历声明 (服务)
/// </summary>
public class Ghrh_ResumeStatementServices : BaseServices<Ghrh_ResumeStatement, Ghrh_ResumeStatementDto, InsertGhrh_ResumeStatementInput, EditGhrh_ResumeStatementInput>, IGhrh_ResumeStatementServices
{
private readonly IBaseRepository<Ghrh_ResumeStatement> _dal;
public Ghrh_ResumeStatementServices(ICaching caching, IBaseRepository<Ghrh_ResumeStatement> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}