TRManager.Student.Student C# (CSharp) Method

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
        public Student(int Student_ID, String Surname, String GivenName, int Class_ID)
        {
            student_ID = Student_ID;
            surname = Surname;
            givenName = GivenName;
            class_ID = Class_ID;
        }
        public String getGivenName()