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.
15 lines
641 B
15 lines
641 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 培训讲师异动附件 (服务)
|
|
/// </summary>
|
|
public class Ghre_TeacherChangeAttachmentServices : BaseServices<Ghre_TeacherChangeAttachment, Ghre_TeacherChangeAttachmentDto, InsertGhre_TeacherChangeAttachmentInput, EditGhre_TeacherChangeAttachmentInput>, IGhre_TeacherChangeAttachmentServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_TeacherChangeAttachment> _dal;
|
|
public Ghre_TeacherChangeAttachmentServices(ICaching caching, IBaseRepository<Ghre_TeacherChangeAttachment> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |