Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 45s

This commit is contained in:
harid 2025-11-24 17:40:43 +07:00
commit ad027ca8b8

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)