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.Core/Tiobon.Core.Services/Ghra/Ghra_StaffGroupDetailServic...

15 lines
572 B

namespace Tiobon.Core.Services;
/// <summary>
/// 人员群组明细 (服务)
/// </summary>
public class Ghra_StaffGroupDetailServices : BaseServices<Ghra_StaffGroupDetail, Ghra_StaffGroupDetailDto, InsertGhra_StaffGroupDetailInput, EditGhra_StaffGroupDetailInput>, IGhra_StaffGroupDetailServices
{
private readonly IBaseRepository<Ghra_StaffGroupDetail> _dal;
public Ghra_StaffGroupDetailServices(ICaching caching, IBaseRepository<Ghra_StaffGroupDetail> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}