This commit is contained in:
SpecialX
2025-06-27 19:03:10 +08:00
parent 14fbe6397a
commit a21ca80782
57 changed files with 3872 additions and 611 deletions

View File

@@ -22,5 +22,17 @@ namespace TechHelper.Server.Services
/// <returns>创建成功的试卷ID</returns>
Task<ApiResponse> CreateExamAsync(AssignmentDto examDto);
Task<ApiResponse> SubmissionAssignment(SubmissionDto submissionDto);
Task<ApiResponse> AssignmentToAllStudentsAsync(Guid id);
Task<ApiResponse> AssignmentToStudentsAsync(Guid assignementId, Guid studentId);
Task<ApiResponse> GetAllSubmissionAsync(Guid id);
}
}