namespace YBEE.EQM.Application;
///
/// 导出成绩服务
///
///
public class ExamScoreExportAppService(IExamScoreExportService examScoreExportService) : IDynamicApiController
{
///
/// 导出TQES输入文件
///
/// 监测计划ID
///
public async Task ExportTqesFile(ExamScoreExportTqesFileInput input)
{
var (fileName, fileBytes) = await examScoreExportService.ExportTqesFile(input);
return new FileContentResult(fileBytes, "application/octet-stream")
{
FileDownloadName = fileName,
};
}
}