PersonModule.Student.AddCourse C# (CSharp) 메소드

AddCourse() 공개 메소드

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