2023-03-13 12:29:56 +07:00
|
|
|
|
using BMA.EHR.Recruit.Service.Models.Documents;
|
2023-04-06 16:38:26 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2023-03-13 12:29:56 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recruit.Service.Models.Recruits
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ScoreImport : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Year { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Document ImportFile { get; set; } = new Document();
|
|
|
|
|
|
|
|
|
|
|
|
public virtual List<RecruitScore> Scores { get; set; } = new List<RecruitScore>();
|
2023-04-06 16:38:26 +07:00
|
|
|
|
|
|
|
|
|
|
[ForeignKey("FK_Score_Import_ID")]
|
|
|
|
|
|
public Guid RecruitImportId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public RecruitImport RecruitImport { get; set; }
|
2023-03-13 12:29:56 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|