From 88c1192b0b53f931b63eb55eb3d3a683eced51be Mon Sep 17 00:00:00 2001 From: harid Date: Mon, 24 Nov 2025 17:40:13 +0700 Subject: [PATCH] no message --- Services/CandidateService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Services/CandidateService.cs b/Services/CandidateService.cs index 9d9dd94..55369f2 100644 --- a/Services/CandidateService.cs +++ b/Services/CandidateService.cs @@ -53,6 +53,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services public async Task GetsAsync(string candidateId) { var candidate = await _context.Candidates.AsQueryable() + .Include(x => x.PositionExam) .FirstOrDefaultAsync(x => x.Id == Guid.Parse(candidateId)); if (candidate == null)