This is a console app project from The C# Academy's LINQ Fundamentals Course. The app contains a List of stocks which contains a nested List of trades. These Lists are given data created in the stockSeeder.cs and the tradeSeeder.cs filess respectively. Program.cs then creates instantiates these Lists and fills them with the created data. The bulk of the project is written inside the ReportPrinter.cs file which contains methods used to print reports based on the supplied data using LINQ queries, some of which require user input. Program.cs has been altered to allow these methods to be called and at the end prints out a summary of the report methods that have been called.