Checkpoint

This commit is contained in:
Filip Izydorczyk
2020-07-28 18:04:38 +02:00
parent 7670401d6e
commit 821f1ffa75
6 changed files with 64 additions and 4 deletions

View File

@ -14,9 +14,6 @@ public class Lecturer {
private String name;
private String surname;
public Lecturer() {
}
public String getTitle() {
return title;
}
@ -41,4 +38,10 @@ public class Lecturer {
this.title = title;
}
public Lecturer(String title, String name, String surname) {
this.title = title;
this.name = name;
this.surname = surname;
}
}