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/Ghra/Ghra_StaffLicenceServices.cs

15 lines
535 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghra_StaffLicence (服务)
/// </summary>
public class Ghra_StaffLicenceServices : BaseServices<Ghra_StaffLicence, Ghra_StaffLicenceDto, InsertGhra_StaffLicenceInput, EditGhra_StaffLicenceInput>, IGhra_StaffLicenceServices
{
private readonly IBaseRepository<Ghra_StaffLicence> _dal;
public Ghra_StaffLicenceServices(ICaching caching, IBaseRepository<Ghra_StaffLicence> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}