C# Class TRManager.Student

Show file Open project: UristMcMiner/SE-Projekt_RWB.csharp Class Usage Examples

Public Properties

Property Type Description
class_ID int
givenName String
student_ID int
surname String

Public Methods

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

Method Details

Student() public method

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.
return System

ToString() public method

public ToString ( ) : string
return string

getGivenName() public method

public getGivenName ( ) : String
return String

getStudentID() public method

public getStudentID ( ) : int
return int

getSurname() public method

public getSurname ( ) : String
return String

Property Details

class_ID public property

The class_ identifier of the students class
public int class_ID
return int

givenName public property

The given name of the student
public String givenName
return String

student_ID public property

The student_ identifier
public int student_ID
return int

surname public property

The surname of the student
public String surname
return String