hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandRequest.cs
Suphonchai Phoonsawat f07b4037f6 fix bugs create and update command
- :Add OrderDate Parameter
2023-08-04 15:17:17 +07:00

33 lines
814 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandRequest
{
public Guid orderTypeValue { get; set; }
public string orderTitle { get; set; }
public int orderNo { get; set; }
public int orderYear { get; set; }
public DateTime orderDate { get; set; }
public Guid orderBy { get; set; }
public string signatoryBy { get; set; }
public string signatoryPosition { get; set; }
public Guid examRound { get; set; }
public string registerPosition { get; set; }
public string conclusionRegisterNo { get; set; }
public DateTime conclusionRegisterDate { get; set; }
public string conclusionResultNo { get; set; }
public DateTime conclusionResultDate { get; set; }
}
}