Esempio n. 1
0
 // constructors
 public Faculty(string fname, string lname, string department, FacultyContact fc, string type) :
     base(fname, lname, department, type)
 {
     contact = (!FacultyContact.isNull(fc)) ? fc :
               throw new ArgumentException("Null value is unaccepted");
 }