Revert "test Ref conversion"

This reverts commit 0d3bf47f73.
This commit is contained in:
2020-10-12 13:14:23 +02:00
parent 0d3bf47f73
commit 7039858d9e
26 changed files with 172 additions and 286 deletions
-13
View File
@@ -1,7 +1,6 @@
using System;
using System.Globalization;
using System.Linq;
using zero.Core.Entities;
namespace zero.Core.Extensions
{
@@ -81,18 +80,6 @@ namespace zero.Core.Extensions
return String.IsNullOrWhiteSpace(input);
}
public static bool IsNullOrEmpty(this Ref input)
{
return input == null || String.IsNullOrEmpty(input);
}
public static bool IsNullOrWhiteSpace(this Ref input)
{
return input == null || String.IsNullOrWhiteSpace(input);
}
public static string ToCamelCase(this string input)
{
if (!String.IsNullOrEmpty(input) && input.Length > 1)