Files
2024-03-13 00:33:46 +01:00

9 lines
213 B
C#

namespace Kreta.Ellenorzo.BL.VN.Logic
{
internal static class TanuloLogic
{
internal static string IsNullOrValue(string value) => string.IsNullOrWhiteSpace(value) ? null : " " + value;
}
}