UnderGradStudent.java 268 Bytes
package org.university.core;

public class UnderGradStudent extends Student {
    public UnderGradStudent(String firstName, String lastName, String ID, int joiningYear, Department department) {
        super(firstName, lastName, ID, joiningYear, department);
    }

}