Téléverser les fichiers vers "/"
This commit is contained in:
12
Grade.cpp
Normal file
12
Grade.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "Grade.h"
|
||||
|
||||
Grade::Grade(int studentId, int courseId, float value)
|
||||
: studentId(studentId), courseId(courseId), value(value) {}
|
||||
|
||||
int Grade::getStudentId() const { return studentId; }
|
||||
|
||||
int Grade::getCourseId() const { return courseId; }
|
||||
|
||||
float Grade::getValue() const { return value; }
|
||||
|
||||
void Grade::setValue(float value) { this->value = value; }
|
||||
Reference in New Issue
Block a user