Checkpoint
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user