]> git.somenet.org - pub/jan/dst18.git/blob - ass1-jpa/src/main/java/dst/ass1/jpa/model/ILecturer.java
Add template for assignment 1
[pub/jan/dst18.git] / ass1-jpa / src / main / java / dst / ass1 / jpa / model / ILecturer.java
1 package dst.ass1.jpa.model;
2
3 import java.util.Collection;
4
5 public interface ILecturer extends IPerson {
6
7     Collection<ICourse> getCourses();
8
9     void setCourses(Collection<ICourse> courses);
10
11     void addCourse(ICourse course);
12
13     Collection<ILesson> getLessons();
14
15     void setLessons(Collection<ILesson> lessons);
16
17     void addLesson(ILesson lesson);
18
19 }