fix parameter error

This commit is contained in:
Suphonchai Phoonsawat 2023-09-04 13:50:49 +07:00
parent 248870d884
commit d016d03bab

View file

@ -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;
}
}