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
572 B
15 lines
572 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 简历信息栏位 (服务)
|
|
/// </summary>
|
|
public class Ghrh_ResumeInfoColumnServices : BaseServices<Ghrh_ResumeInfoColumn, Ghrh_ResumeInfoColumnDto, InsertGhrh_ResumeInfoColumnInput, EditGhrh_ResumeInfoColumnInput>, IGhrh_ResumeInfoColumnServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_ResumeInfoColumn> _dal;
|
|
public Ghrh_ResumeInfoColumnServices(ICaching caching, IBaseRepository<Ghrh_ResumeInfoColumn> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |