IsEmpty() public method

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