18 lines
558 B
C#
18 lines
558 B
C#
using Dolphin.ExamPictureCut.Exams;
|
|
|
|
namespace Dolphin.ExamPictureCut.Services;
|
|
|
|
public class ExamAppService : DolphinAppService
|
|
{
|
|
private readonly IExamManager _examManager;
|
|
public ExamAppService(IExamManager examManager)
|
|
{
|
|
_examManager = examManager;
|
|
}
|
|
|
|
public async Task Test()
|
|
{
|
|
await _examManager.ExamStudentGather(new() { SchoolId = 1, StudentExamNum = "BP2-3G3-07K-BZ", BookId = 528102717276229, ExamSubjectSchoolId = 528066671910982, ExamSubjectId = 528066655817797, LastCollectTime = DateTime.Now });
|
|
}
|
|
}
|