This is the template to use for the C# commercial controller. In the Commercial_Controller folder, you will find the classes that should be used along with some methods described in the requirements. The necessary files to run some tests are also included, in the Commercial_Controller.Tests folder.
As long as you have .NET 6.0 installed on your computer, nothing more needs to be installed:
The code to run the scenarios is included in the Commercial_Controller folder, and can be executed there with:
dotnet run <SCENARIO-NUMBER>
To launch the tests, make sure to be at the root of the repository and run:
dotnet test
With a fully completed project, you should get an output like:
You can also get more details about each test by adding the -v n flag:
dotnet test -v n
which should give something like:
Make sure to only edit files in the Commercial_Controller folder. The test and scenarios files can be left in your final project. The grader will run tests similar to the ones provided.
Of course, make sure to edit this Readme file to describe your own project!

