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
596 B
15 lines
596 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 人力需求维护明细 (服务)
|
|
/// </summary>
|
|
public class Ghrh_HumanRequestDetailServices : BaseServices<Ghrh_HumanRequestDetail, Ghrh_HumanRequestDetailDto, InsertGhrh_HumanRequestDetailInput, EditGhrh_HumanRequestDetailInput>, IGhrh_HumanRequestDetailServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_HumanRequestDetail> _dal;
|
|
public Ghrh_HumanRequestDetailServices(ICaching caching, IBaseRepository<Ghrh_HumanRequestDetail> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |