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 = 3, StudentExamNum = "BP2-3G3-07K-C1", BookId = 529493484986437, ExamSubjectSchoolId = 530151338438726, ExamSubjectId = 530151329325125, LastCollectTime = DateTime.Now });
|
|
}
|
|
}
|