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

23 lines
675 B

using Tiobon.Core.IServices;
using Tiobon.Core.Model.Models;
using Tiobon.Core.Services.BASE;
using Tiobon.Core.IRepository.Base;
using Tiobon.Core.Common.Caches;
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;
}
}
}