C# Class TRManager.Student

Afficher le fichier Open project: UristMcMiner/SE-Projekt_RWB.csharp Class Usage Examples

Méthodes publiques

Свойство Type Description
class_ID int
givenName String
student_ID int
surname String

Méthodes publiques

Méthode 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

Method Details

Student() public méthode

Initializes a new instance of the Student class.
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.
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

getGivenName() public méthode

public getGivenName ( ) : String
Résultat String

getStudentID() public méthode

public getStudentID ( ) : int
Résultat int

getSurname() public méthode

public getSurname ( ) : String
Résultat String

Property Details

class_ID public_oe property

The class_ identifier of the students class
public int class_ID
Résultat int

givenName public_oe property

The given name of the student
public String givenName
Résultat String

student_ID public_oe property

The student_ identifier
public int student_ID
Résultat int

surname public_oe property

The surname of the student
public String surname
Résultat String