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
594 B
15 lines
594 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 岗位技能_宝连通 (服务)
|
|
/// </summary>
|
|
public class Ghre_TitleSkill_BoltoneServices : BaseServices<Ghre_TitleSkill_Boltone, Ghre_TitleSkill_BoltoneDto, InsertGhre_TitleSkill_BoltoneInput, EditGhre_TitleSkill_BoltoneInput>, IGhre_TitleSkill_BoltoneServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_TitleSkill_Boltone> _dal;
|
|
public Ghre_TitleSkill_BoltoneServices(ICaching caching, IBaseRepository<Ghre_TitleSkill_Boltone> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |