IsEmpty() 공개 메소드

public IsEmpty ( ) : bool
리턴 bool
예제 #1
0
파일: Importer.cs 프로젝트: DEFRA/prsd-iws
 public bool IsEmpty()
 {
     return(Address.IsEmpty() &&
            Contact.IsEmpty() &&
            !BusinessType.HasValue &&
            string.IsNullOrWhiteSpace(Name) &&
            string.IsNullOrWhiteSpace(RegistrationNumber));
 }
예제 #2
0
 public bool IsEmpty()
 {
     return(Address.IsEmpty() &&
            string.IsNullOrWhiteSpace(Name) &&
            Contact.IsEmpty());
 }