20 lines
554 B
C#
20 lines
554 B
C#
using BMA.EHR.Recruit.Service.Models.Documents;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
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>();
|
|
|
|
[ForeignKey("FK_Score_Import_ID")]
|
|
public Guid RecruitImportId { get; set; }
|
|
|
|
public RecruitImport RecruitImport { get; set; }
|
|
}
|
|
}
|