2023-03-31 15:01:40 +07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Models.Documents;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateDocument : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, Comment("Id ผู้สมัครสอบ")]
|
|
|
|
|
|
public virtual Candidate? Candidate { get; set; }
|
2023-04-07 16:26:11 +07:00
|
|
|
|
|
2023-03-31 15:01:40 +07:00
|
|
|
|
[Required, Comment("Id ไฟล์เอกสาร")]
|
|
|
|
|
|
public virtual Document? Document { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|