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_Doc : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[Required, Comment("อ้างอิงรหัสเอกสาร")]
|
|
|
|
|
|
public Document Document { 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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|