public Student Clone() { Student clone = new Student(this.FirstName, this.MiddleName, this.LastName, this.SSN, this.Address, this.PhoneNumber, this.Email, this.Course, this.SpecialtyName, this.FacultyName, this.UniversityName); return clone; }