update model and fix code
All checks were successful
Build & Deploy on Dev / build (push) Successful in 44s

This commit is contained in:
Suphonchai Phoonsawat 2026-05-19 17:14:39 +07:00
parent 9c353f40c6
commit 054ef81c63
3 changed files with 10 additions and 6 deletions

View file

@ -83,6 +83,8 @@ namespace BMA.EHR.Recruit.Models.Recruits
[MaxLength(50), Comment("สถานะคัดกรองคุณสมบัติ")]
public string ExamAttribute { get; set; } = string.Empty;
public Guid ScoreImportId { get; set; }
public ScoreImport ScoreImport { get; set; }
}
}

View file

@ -7,7 +7,9 @@ namespace BMA.EHR.Recruit.Models.Recruits
{
public int Year { get; set; }
public Document ImportFile { get; set; } = new Document();
public Guid? ImportFileId { get; set; }
public Document ImportFile { get; set; }
public virtual List<RecruitScore> Scores { get; set; } = new List<RecruitScore>();