9 lines
213 B
C#
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;
|
|
|
|
}
|
|
}
|