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/Ghre/Ghre_SchoolAttachmentServic...

15 lines
572 B

namespace Tiobon.Core.Services;
/// <summary>
/// 培训机构附件 (服务)
/// </summary>
public class Ghre_SchoolAttachmentServices : BaseServices<Ghre_SchoolAttachment, Ghre_SchoolAttachmentDto, InsertGhre_SchoolAttachmentInput, EditGhre_SchoolAttachmentInput>, IGhre_SchoolAttachmentServices
{
private readonly IBaseRepository<Ghre_SchoolAttachment> _dal;
public Ghre_SchoolAttachmentServices(ICaching caching, IBaseRepository<Ghre_SchoolAttachment> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}