|
@ -6,11 +6,14 @@ import java.util.List; |
|
|
public class Administration { |
|
|
public class Administration { |
|
|
private List<Professor> professors; |
|
|
private List<Professor> professors; |
|
|
private List<Admin> admins; |
|
|
private List<Admin> admins; |
|
|
|
|
|
private List<Student> students; |
|
|
|
|
|
|
|
|
public Administration() |
|
|
public Administration() |
|
|
{ |
|
|
{ |
|
|
this.professors = new ArrayList<>(); |
|
|
this.professors = new ArrayList<>(); |
|
|
this.admins = new ArrayList<>(); |
|
|
this.admins = new ArrayList<>(); |
|
|
|
|
|
this.students = new ArrayList<>(); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|