1
This commit is contained in:
16
TechHelper.Server/Services/ISubmissionServices.cs
Normal file
16
TechHelper.Server/Services/ISubmissionServices.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Entities.Contracts;
|
||||
using TechHelper.Services;
|
||||
|
||||
namespace TechHelper.Server.Services
|
||||
{
|
||||
public interface ISubmissionServices : IBaseService<Submission, Guid>
|
||||
{
|
||||
Task<ApiResponse> GetAssignmentErrorQuestionsAsync(Guid assignmentId, Guid userId);
|
||||
Task<ApiResponse> GetAllErrorQuestionsAsync(Guid userId);
|
||||
Task<ApiResponse> GetAssignmentErrorQuestionTypeDisAsync(Guid assignmentId, Guid userId);
|
||||
Task<ApiResponse> GetAllErrorQuestionTypeDisAsync(Guid assignmentId, Guid userId);
|
||||
|
||||
Task<ApiResponse> GetAssignmentAllStudentsError(Guid assignmentId, Guid teacherId);
|
||||
Task<ApiResponse> GetQuestionErrorStudents(Guid assignmentId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user