/Users/19826/Downloads/IA - Brian/src/ia/brian/Tutee.java
 1 package ia.brian;
 2 
 3 /*
 4  * To change this license header, choose License Headers in Project Properties.
 5  * To change this template file, choose Tools | Templates
 6  * and open the template in the editor.
 7  */
 8 
 9 /**
10  *
11  * @author 19826
12  */
13 public class Tutee extends Student{    
14     public Tutee(){
15         
16     }
17     
18     public Tutee(String name, String ID, int grade, String gender, String tutorOrTutee, String[] subjects, TimeTable[] timeTable, String specialNotes){
19         super(name, ID, grade, gender, tutorOrTutee, subjects, timeTable, specialNotes);
20     }
21     public Tutee(String name, String ID, int grade, String gender, String tutorOrTutee, String[] subjects, TimeTable[] timeTable, String specialNotes, boolean isCurrentlyAvailable){
22         super(name, ID, grade, gender, tutorOrTutee, subjects, timeTable, specialNotes, isCurrentlyAvailable);
23     }
24     
25     public Tutee(String name, String ID, int grade, String[] subjects, TimeTable[] timeTable, boolean isCurrentlyAvailable){
26         super(name, ID, grade, subjects, timeTable, isCurrentlyAvailable);
27     }
28     
29     
30 }
31