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

15 lines
585 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghre_TeacherAttachment (服务)
/// </summary>
public class Ghre_TeacherAttachmentServices : BaseServices<Ghre_TeacherAttachment, Ghre_TeacherAttachmentDto, InsertGhre_TeacherAttachmentInput, EditGhre_TeacherAttachmentInput>, IGhre_TeacherAttachmentServices
{
private readonly IBaseRepository<Ghre_TeacherAttachment> _dal;
public Ghre_TeacherAttachmentServices(ICaching caching, IBaseRepository<Ghre_TeacherAttachment> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}