예제 #1
0
 public Student(
     string studentFirstName,
     string studentMiddleName,
     string studentLastName,
     uint studentSSN,
     string studentAddress,
     string studentPhoneNumber,
     string studentEMail,
     UniversityEnum studentUniversity,
     FacultyEnum studentFaculty,
     SpecialtyEnum studentSpecialty,
     CourseEnum studentCourse)
 {
     this.FirstName   = studentFirstName;
     this.MiddleName  = studentMiddleName;
     this.LastName    = studentLastName;
     this.SSN         = studentSSN;
     this.address     = studentAddress;
     this.PhoneNumber = studentPhoneNumber;
     this.EMail       = studentEMail;
     this.University  = studentUniversity;
     this.Faculty     = studentFaculty;
     this.Specialty   = studentSpecialty;
     this.Course      = studentCourse;
 }
예제 #2
0
 public Student(string fname, string lname, string email, string phone, string address1, string address2, string city, CountiesEnum county, LevelEnum level, CourseEnum course, int studentno)
 {
     FirstName = fname;
     LastName  = lname;
     Email     = email;
     Phone     = phone;
     Address1  = address1;
     Address2  = address2;
     City      = city;
     County    = county;
     Level     = level;
     Course    = course;
     StudentNo = studentno;
 }