PersonModule.Student.AddCourse C# (CSharp) Method

AddCourse() public method

public AddCourse ( Course course ) : void
course PersonModule.PersonDefinitions.Course
return void
        public void AddCourse(Course course)
        {
            this.coursesList.Add(course);
            //this.gradesList.Add(course, new List<double>()); // Is this needed? 
        }