ปรับระบบสรรหาสอบคัดเลือก (4)
This commit is contained in:
parent
efb22a9d73
commit
fe4781030b
4 changed files with 30 additions and 29 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue