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.
14 lines
506 B
14 lines
506 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 试卷配置 (服务)
|
|
/// </summary>
|
|
public class Ghre_ExamPaperConfigServices : BaseServices<Ghre_ExamPaperConfig, Ghre_ExamPaperConfigDto, InsertGhre_ExamPaperConfigInput, EditGhre_ExamPaperConfigInput>, IGhre_ExamPaperConfigServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_ExamPaperConfig> _dal;
|
|
public Ghre_ExamPaperConfigServices(IBaseRepository<Ghre_ExamPaperConfig> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
} |