ปรับระบบสรรหาสอบคัดเลือก (4)

This commit is contained in:
harid 2025-11-19 10:31:20 +07:00
parent efb22a9d73
commit fe4781030b
4 changed files with 30 additions and 29 deletions

View file

@ -830,13 +830,13 @@ namespace BMA.EHR.Recurit.Exam.Service.Controllers
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> CheckShowExamInfoService(RequestApproves item)
public async Task<ActionResult<ResponseObject>> CheckShowExamInfoService(RequestApproveShowExamInfo item)
{
try
{
if (item.CandidateId != null)
if (!string.IsNullOrEmpty(item.ExamId))
{
await _candidateService.AdminCheckShowExamInfoService(item.CandidateId);
await _candidateService.AdminCheckShowExamInfoService(item.ExamId);
}
return Success();