Added endpoints

This commit is contained in:
Filip Izydorczyk
2020-08-08 14:14:42 +02:00
parent ac0851ae29
commit 2e40e33545
7 changed files with 77 additions and 0 deletions

View File

@ -22,6 +22,10 @@ public class Course {
public Course() {
}
public Long getId() {
return this.id;
}
public String getName() {
return name;
}

View File

@ -44,4 +44,7 @@ public class Lecturer {
this.surname = surname;
}
public Lecturer() {
}
}