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/Ghrs/Ghrs_AttachmentServices.cs

23 lines
725 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>
/// Ghrs_Attachment (服务)
/// </summary>
public class Ghrs_AttachmentServices : BaseServices<Ghrs_Attachment, Ghrs_AttachmentDto, InsertGhrs_AttachmentInput, EditGhrs_AttachmentInput>, IGhrs_AttachmentServices
{
private readonly IBaseRepository<Ghrs_Attachment> _dal;
public Ghrs_AttachmentServices(ICaching caching, IBaseRepository<Ghrs_Attachment> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}
}