no message

This commit is contained in:
kittapath 2025-01-11 12:07:56 +07:00
parent 340dcf9476
commit e4386d9cb1

View file

@ -1987,7 +1987,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
.OrderBy(x => x.DurationStart) .OrderBy(x => x.DurationStart)
.Where(x => x.Candidate.Id == item.Id) .Where(x => x.Candidate.Id == item.Id)
.ToListAsync(); .ToListAsync();
if(careers.Any()) if (careers.Any())
{ {
var firstCareer = careers.First(); var firstCareer = careers.First();
@ -2493,7 +2493,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
var educations = new List<object>(); var educations = new List<object>();
var careers = new List<object>(); var careers = new List<object>();
var ages = new { var ages = new
{
one = "", one = "",
two = "", two = "",
three = "", three = "",
@ -2620,6 +2621,8 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
.ThenInclude(x => x.PositionExam) .ThenInclude(x => x.PositionExam)
.Include(x => x.Candidate) .Include(x => x.Candidate)
.ThenInclude(x => x.ProfileImg) .ThenInclude(x => x.ProfileImg)
.Include(x => x.Candidate)
.ThenInclude(x => x.Educations)
.FirstOrDefaultAsync(x => x.Id == examId); .FirstOrDefaultAsync(x => x.Id == examId);
if (periodExam == null) if (periodExam == null)