我要重新整理结构,这是这阶段的保存

This commit is contained in:
SpecialX
2025-06-16 10:48:40 +08:00
parent 34ab5abbb0
commit f37262d72e
2 changed files with 20 additions and 0 deletions

View File

@@ -86,6 +86,14 @@ namespace TechHelper.Server.Services
return _mapper.Map<IEnumerable<ExamDto>>(assignments);
}
public async Task AddAsync(QuestionGroupDto qg)
{
if (qg.ValidQuestionGroup)
{
var mapQG = _mapper.Map<QuestionGroup>(qg);
}
}
public Task<ApiResponse> GetAllAsync(QueryParameter query)
{
throw new NotImplementedException();