C# 클래스 TRManager.Student

파일 보기 프로젝트 열기: UristMcMiner/SE-Projekt_RWB.csharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
class_ID int
givenName String
student_ID int
surname String

공개 메소드들

메소드 설명
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

메소드 상세

Student() 공개 메소드

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.
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

getGivenName() 공개 메소드

public getGivenName ( ) : String
리턴 String

getStudentID() 공개 메소드

public getStudentID ( ) : int
리턴 int

getSurname() 공개 메소드

public getSurname ( ) : String
리턴 String

프로퍼티 상세

class_ID 공개적으로 프로퍼티

The class_ identifier of the students class
public int class_ID
리턴 int

givenName 공개적으로 프로퍼티

The given name of the student
public String givenName
리턴 String

student_ID 공개적으로 프로퍼티

The student_ identifier
public int student_ID
리턴 int

surname 공개적으로 프로퍼티

The surname of the student
public String surname
리턴 String