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_TitleServices.cs

15 lines
465 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghra_Title (服务)
/// </summary>
public class Ghra_TitleServices : BaseServices<Ghra_Title, Ghra_TitleDto, InsertGhra_TitleInput, EditGhra_TitleInput>, IGhra_TitleServices
{
private readonly IBaseRepository<Ghra_Title> _dal;
public Ghra_TitleServices(ICaching caching, IBaseRepository<Ghra_Title> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}