hrms-api-backend/BMA.EHR.Command.Service/Requests/CreateCommandRequest.cs
2023-08-20 11:07:18 +07:00

35 lines
990 B
C#

namespace BMA.EHR.Command.Service.Requests
{
public class CreateCommandRequest
{
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 Guid examRound { get; set; }
public string registerPosition { get; set; } = string.Empty;
public string conclusionRegisterNo { get; set; } = string.Empty;
public DateTime conclusionRegisterDate { get; set; }
public string conclusionResultNo { get; set; }
public DateTime conclusionResultDate { get; set; }
}
}