edwardUL99 / StudSysCppCLI

A CLI UI for the StudSysCpp Project. This is a "dummy" project that is not used but done to practise C++ and also software engineering in terms of issues, issue tracking, issue refinement, requirements engineering, releases and also databases
GNU General Public License v3.0
0 stars 0 forks source link

Add a way to register more than one lecturer on the same module #76

Closed edwardUL99 closed 3 years ago

edwardUL99 commented 4 years ago

At present, when determining the modules a lecturer is registered for, the system queries the database for all modules that has that lecturer down as their lecturer. This works fine for version 1.0, but past this we want to remove the limitation of only having 1 lecturer per module.

We may want to add a database table to register a list of lecturers for a module.

This may also require a vector of lecturers in the Module class. This would be the mapping for that list, rather than creating a new DatabaseItem for it. This requires changes in the Library also.

edwardUL99 commented 4 years ago

Moving to milestone 1.3 as needs library support