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
505 B
15 lines
505 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghre_ExamStaff (服务)
|
|
/// </summary>
|
|
public class Ghre_ExamStaffServices : BaseServices<Ghre_ExamStaff, Ghre_ExamStaffDto, InsertGhre_ExamStaffInput, EditGhre_ExamStaffInput>, IGhre_ExamStaffServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_ExamStaff> _dal;
|
|
public Ghre_ExamStaffServices(ICaching caching, IBaseRepository<Ghre_ExamStaff> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |