/// <summary>
 /// Checks if the given input is Empty
 /// </summary>
 /// <param name="value">The input value to be checked for Empty</param>
 /// <returns>
 ///   <c>true</c> if given value is null or empty ; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsEmpty(float value)
 {
     return(UtilityHandler.IsEmpty(value));
 }
 /// <summary>
 /// Checks if the given input is Empty
 /// </summary>
 /// <param name="value">The input value to be checked for Empty</param>
 /// <returns>
 ///   <c>true</c> if given value is null or empty ; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsEmpty(string value)
 {
     return(UtilityHandler.IsEmpty(value));
 }
 /// <summary>
 /// Checks if the given input is Empty
 /// </summary>
 /// <param name="value">The input value to be checked for Empty</param>
 /// <returns>
 ///     <c>true</c> if given value is null or empty ; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsEmpty(decimal value)
 {
     return(UtilityHandler.IsEmpty(value));
 }
 /// <summary>
 /// Checks if the given input is Empty
 /// </summary>
 /// <param name="value">The input value to be checked for Empty</param>
 /// <returns>
 ///   <c>true</c> if given value is null or empty ; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsEmpty(DateTime value)
 {
     return(UtilityHandler.IsEmpty(value));
 }