จัดformat วันที่รายงานเครื่องราช 46

This commit is contained in:
DESKTOP-2S5P7D1\Windows 10 2023-09-05 13:10:45 +07:00
parent 4ebce54423
commit 561ef617b6
2 changed files with 5 additions and 1 deletions

View file

@ -69,6 +69,10 @@ namespace BMA.EHR.Domain.Extensions
{
return number.ToString("#,##0.00");
}
public static string ToNumericNoDecimalText(this double number)
{
return number.ToString("#,##");
}
public static string ToReadText(this double value)
{