no message

This commit is contained in:
harid 2025-11-24 17:40:13 +07:00
parent 591c9e0006
commit 88c1192b0b

View file

@ -53,6 +53,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
public async Task<Candidate> GetsAsync(string candidateId)
{
var candidate = await _context.Candidates.AsQueryable()
.Include(x => x.PositionExam)
.FirstOrDefaultAsync(x => x.Id == Guid.Parse(candidateId));
if (candidate == null)