Skip to content
Snippets Groups Projects
Commit 671e546f authored by Dennis Toth's avatar Dennis Toth
Browse files

Update src/main/java/de/thdeg/grademanager/model/CoursesOfStudy.java

parent 806ca03d
No related branches found
No related tags found
1 merge request!3jpa+gui+logic
......@@ -13,9 +13,9 @@ public class CoursesOfStudy
private final int duration;
private final int fees;
private final List<Course> courses;
private FieldOfStudy fieldOfStudy;
private String fieldOfStudy;
public CoursesOfStudy(int id, String name, BachelorDegree bachelorDegree, int duration, int fees, List<Course> courses, FieldOfStudy fieldOfStudy)
public CoursesOfStudy(int id, String name, BachelorDegree bachelorDegree, int duration, int fees, List<Course> courses, String fieldOfStudy)
{
this.id = id;
this.name = name;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment