예제 #1
0
 public bool HasValidLastName()
 {
     return(Check.IsWord(this.lastName));
 }
예제 #2
0
 public bool HasValidSpecialty()
 {
     //Specialty should be a set of letters and white spaces only.
     return(Check.IsWord(this.specialty));
 }
예제 #3
0
 public bool HasValidFirstName()
 {
     return(Check.IsWord(this.firstName));
 }