2023-11-18 01:43:03 +07:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using BMA.EHR.Domain.Models.Base;
|
|
|
|
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Domain.Models.Discipline
|
|
|
|
|
|
{
|
|
|
|
|
|
public class DisciplineDirector : EntityBase
|
|
|
|
|
|
{
|
2023-11-23 08:48:21 +07:00
|
|
|
|
[Required, Comment("คำนำหน้าชื่อ")]
|
|
|
|
|
|
public string Prefix { get; set; } = string.Empty;
|
2023-11-18 01:43:03 +07:00
|
|
|
|
|
|
|
|
|
|
[Required, Comment("ชื่อ")]
|
|
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[Required, Comment("นามสกุล")]
|
|
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[Required, Comment("ตำแหน่ง")]
|
|
|
|
|
|
public string Position { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[Required, Comment("อีเมล")]
|
|
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
[Required, Comment("เบอร์โทรศัพท์")]
|
|
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|