Beispiel #1
0
 public TakenCourse(Course course, Student student, int grade)
 {
     this.course = course;
     this.student = student;
     this.grade = grade;
 }
Beispiel #2
0
 public TakenCourse(Course course, Student student)
     : this(course, student, 0)
 {
 }