public static string ToShortAusDate(this Nullable <System.DateTime> value)
 {
     if (value != null)
     {
         return(Extensions.ToShortAusDate(value.Value));
     }
     else
     {
         return(string.Empty);
     }
 }