Property | Type | Description | |
---|---|---|---|
class_ID | int | ||
givenName | String | ||
student_ID | int | ||
surname | String |
Method | Description | |
---|---|---|
Student ( int Student_ID, String Surname, String GivenName, int Class_ID ) : System |
Initializes a new instance of the Student class.
|
|
ToString ( ) : string | ||
getGivenName ( ) : String | ||
getStudentID ( ) : int | ||
getSurname ( ) : String |
public Student ( int Student_ID, String Surname, String GivenName, int Class_ID ) : System | ||
Student_ID | int | The student_ identifier. |
Surname | String | The surname of the student. |
GivenName | String | The given name of the student. |
Class_ID | int | The class_ identifier of the students class. |
return | System |