Change API Put and Post CommandType 01-09

This commit is contained in:
Suphonchai Phoonsawat 2023-08-25 10:32:43 +07:00
parent 0aa0aedba9
commit eba4e23bea
13 changed files with 17000 additions and 37 deletions

View file

@ -0,0 +1,27 @@
namespace BMA.EHR.Command.Service.Requests
{
public class UpdateCommandGroup2Request
{
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 conclusionMeetingNo { get; set; } = string.Empty;
public DateTime conclusionMeetingDate { get; set; }
}
}