"git@mygit.th-deg.de:vt16684/embedded-acceleration.git" did not exist on "6881d96e8636beb0974c764d20d58dcbd38d7883"
Newer
Older
package de.thdeg.grademanager.model;
import de.thdeg.grademanager.model.enumeration.BachelorDegree;
import java.util.List;
public class CoursesOfStudy
{
private final int id;
private final String name;
private final BachelorDegree bachelorDegree;
private final int duration;
private final int fees;
private final List<Course> courses;
private String fieldOfStudy;
public CoursesOfStudy(int id, String name, BachelorDegree bachelorDegree, int duration, int fees, List<Course> courses, String fieldOfStudy)
{
this.id = id;
this.name = name;
this.bachelorDegree = bachelorDegree;
this.duration = duration;
this.fees = fees;
this.courses = courses;
this.fieldOfStudy = fieldOfStudy;
}