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
575 B
15 lines
575 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghre_ExamRecordAnswer (服务)
|
|
/// </summary>
|
|
public class Ghre_ExamRecordAnswerServices : BaseServices<Ghre_ExamRecordAnswer, Ghre_ExamRecordAnswerDto, InsertGhre_ExamRecordAnswerInput, EditGhre_ExamRecordAnswerInput>, IGhre_ExamRecordAnswerServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_ExamRecordAnswer> _dal;
|
|
public Ghre_ExamRecordAnswerServices(ICaching caching, IBaseRepository<Ghre_ExamRecordAnswer> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |