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_StaffSocialRelationSer...

23 lines
815 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_StaffSocialRelation (服务)
/// </summary>
public class Ghra_StaffSocialRelationServices : BaseServices<Ghra_StaffSocialRelation, Ghra_StaffSocialRelationDto, InsertGhra_StaffSocialRelationInput, EditGhra_StaffSocialRelationInput>, IGhra_StaffSocialRelationServices
{
private readonly IBaseRepository<Ghra_StaffSocialRelation> _dal;
public Ghra_StaffSocialRelationServices(ICaching caching, IBaseRepository<Ghra_StaffSocialRelation> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}
}