IsEmpty() public méthode

public IsEmpty ( ) : bool
Résultat bool
Exemple #1
0
 public bool IsEmpty()
 {
     return(Address.IsEmpty() &&
            Contact.IsEmpty() &&
            !BusinessType.HasValue &&
            string.IsNullOrWhiteSpace(Name) &&
            string.IsNullOrWhiteSpace(RegistrationNumber));
 }
Exemple #2
0
 public bool IsEmpty()
 {
     return(Address.IsEmpty() &&
            string.IsNullOrWhiteSpace(Name) &&
            Contact.IsEmpty());
 }