using Entities.Contracts; using TechHelper.Services; namespace TechHelper.Server.Services { public interface ISubmissionServices : IBaseService { Task GetAssignmentErrorQuestionsAsync(Guid assignmentId, Guid userId); Task GetAllErrorQuestionsAsync(Guid userId); Task GetAssignmentErrorQuestionTypeDisAsync(Guid assignmentId, Guid userId); Task GetAllErrorQuestionTypeDisAsync(Guid assignmentId, Guid userId); Task GetAssignmentAllStudentsError(Guid assignmentId, Guid teacherId); Task GetQuestionErrorStudents(Guid assignmentId); } }