public EnrollmentDto(int enrollmentId, int courseId, int studentId, Grade?grade, CourseDto course, StudentDto student) { this.EnrollmentId = enrollmentId; this.CourseId = courseId; this.StudentId = studentId; this.Grade = grade; this.Course = course; this.Student = student; }