15 lines
350 B
C#
15 lines
350 B
C#
|
|
namespace YLErp.Web
|
|
{
|
|
public static class Utilities
|
|
{
|
|
public static string ShowValidDatetime(DateTime? dt, string format = "yyyy-MM-dd")
|
|
{
|
|
if (dt == null || dt == DateTime.MinValue)
|
|
{
|
|
return string.Empty;
|
|
}
|
|
return dt.Value.ToString(format);
|
|
}
|
|
}
|
|
} |