IsEmpty() public method

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