Merge branch 'develop' of github.com:Frappet/BMA-EHR-BackEnd into develop

This commit is contained in:
Kittapath 2024-01-22 17:20:57 +07:00
commit 31c21469ec
13 changed files with 3455 additions and 86 deletions

View file

@ -13,8 +13,8 @@ namespace BMA.EHR.Domain.Models.Discipline
[Required, Comment("อ้างอิงเรื่องสอบสวน")]
public DisciplineDisciplinary DisciplineDisciplinary { get; set; }
[Comment("หน้าที่")]
public string Duty { get; set; } = string.Empty;
public string? Duty { get; set; } = string.Empty;
[Comment("เลขที่คำสั่ง")]
public string CommandNo { get; set; } = string.Empty;
public string? CommandNo { get; set; } = string.Empty;
}
}

View file

@ -13,8 +13,8 @@ namespace BMA.EHR.Domain.Models.Discipline
[Required, Comment("อ้างอิงเรื่องสืบสวน")]
public DisciplineInvestigate DisciplineInvestigate { get; set; }
[Comment("หน้าที่")]
public string Duty { get; set; } = string.Empty;
public string? Duty { get; set; } = string.Empty;
[Comment("เลขที่คำสั่ง")]
public string CommandNo { get; set; } = string.Empty;
public string? CommandNo { get; set; } = string.Empty;
}
}