Add API Create command For C-PM-10 to C-PM-17

This commit is contained in:
Suphonchai Phoonsawat 2023-08-25 12:27:12 +07:00
parent ec53034b4d
commit ab5afff6e0
9 changed files with 1032 additions and 0 deletions

View file

@ -0,0 +1,27 @@
namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandGroup10Request
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; } = string.Empty;
public string orderNo { get; set; } = string.Empty;
public int orderYear { get; set; }
public DateTime orderDate { get; set; }
public Guid orderBy { get; set; }
public string orderByOrganizationName { get; set; } = string.Empty;
public string signatoryBy { get; set; } = string.Empty;
public string signatoryPosition { get; set; } = string.Empty;
public string govAidCommandNo { get; set; }
public DateTime govAidCommandDate { get; set; }
}
}