wilksonccp / CSharp_CourseControl_Project

This is a course management system project developed in C#. The goal of this project is to demonstrate the implementation of a basic system that manages courses, students, and enrollments, allowing the addition, removal, and listing of information.
MIT License
0 stars 0 forks source link

Criar o método para matricular um aluno em um curso. #1

Closed wilksonccp closed 7 hours ago

wilksonccp commented 2 weeks ago

Matricula de aluno

- Decidir em que local deverá ficar esse método.

wilksonccp commented 7 hours ago

I created a list within the courses class so that each course is responsible for managing its enrollments.

Through a function within the userinteraction class, it is possible to insert students into their respective courses. I believe that this approach will contribute to future report production and will also make the program structure more organized.