|
using Dolphin.ExamPictureCut.Exams.Dto;
|
|
using Volo.Abp.Domain.Services;
|
|
|
|
namespace Dolphin.ExamPictureCut.Exams;
|
|
|
|
public interface IExamManager : IDomainService
|
|
{
|
|
Task ExamStudentGather(ExamStudentGatherEto eto);
|
|
Task ExamAnnotate(ExamAnnotateEto eto);
|
|
}
|