From d016d03bab39d63873ce71ee51ce79e0b7be3e84 Mon Sep 17 00:00:00 2001 From: Suphonchai Phoonsawat Date: Mon, 4 Sep 2023 13:50:49 +0700 Subject: [PATCH] fix parameter error --- .../Requests/CreateCommandGroup7Request.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BMA.EHR.Command.Service/Requests/CreateCommandGroup7Request.cs b/BMA.EHR.Command.Service/Requests/CreateCommandGroup7Request.cs index c6bcb8b5..83ceb462 100644 --- a/BMA.EHR.Command.Service/Requests/CreateCommandGroup7Request.cs +++ b/BMA.EHR.Command.Service/Requests/CreateCommandGroup7Request.cs @@ -20,10 +20,10 @@ public string signatoryPosition { get; set; } = string.Empty; - public string placementCommandIssuer { get; set; } + public string placementCommandIssuer { get; set; } = string.Empty; - public string placementCommandNo { get; set; } + public string placementCommandNo { get; set; } = string.Empty; - public DateTime placementCommandDate { get; set; } + public DateTime placementCommandDate { get; set; } = DateTime.Now; } }