2023-11-23 19:59:24 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using BMA.EHR.Domain.Models.Organizations;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Domain.Models.Discipline
|
|
|
|
|
|
{
|
|
|
|
|
|
public class DisciplineInvestigate_Director : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, Comment("อ้างอิงรหัสกรรมการ")]
|
|
|
|
|
|
public DisciplineDirector DisciplineDirector { get; set; }
|
2023-11-24 15:28:04 +07:00
|
|
|
|
[Required, Comment("อ้างอิงเรื่องสืบสวน")]
|
2023-11-23 19:59:24 +07:00
|
|
|
|
public DisciplineInvestigate DisciplineInvestigate { get; set; }
|
2023-12-21 08:41:40 +07:00
|
|
|
|
[Comment("หน้าที่")]
|
|
|
|
|
|
public string Duty { get; set; } = string.Empty;
|
2023-11-23 19:59:24 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|