SeniorProject repo contains three projects: SWPA, VIP and MJ
The three of them are ASP.NET Core Web App projects 

All changes currently in effect are localized to the SPWA and SPWA.DataAccess folders

Code Structure (Folders)
	-SPWA (All front-end code is located here)
		->Pages (Contains all of the razor/cshtml files for pages)
			-Projects.razor (the project listings page. this is where use of the project related code is exemplified to submit and view projects)
			-EvalPO.razor (the product owner evaluation page. exemplifies using the evaluation model and service to submit an evaluation)
			-EvalSE.razor (the student evaluation page. exemplifies using the evaluation model and service to submit an evaluation)
			-EvalTM.razor (the teammate evaluation page. exemplifies using the evaluation model and service to submit an evaluation)
			-EvalReview.razor (the evaluation review page. shows how we intended to implement the ability for product owners to review submitted evaluations 
			and, alongside description in the final document and shortcomings video, should give some idea on where we failed in doing so)
			-EvaluationSelect.razor (portal page that allows users to choose an evaluation - currently not in use)
			
		->Shared
			->EvalCard_PO.razor (now defunct navigation card for product owner evaluation)
			->EvalCard_S.razor (now defunct navigation card for student evaluation)
			->EvalCard_TM.razor (now defunct card for teammate evaluation)
			->NavMenu.razor (code to make changes to the navigation menu located at the top of every page)
	-SPWA.DataAccess (Back-end logic is here as well as database files)
		->Data
			->Evaluation
				-Evaluation.cs (model for evaluation used to map the evaluation table in the database to the local uses)
				-EvaluationReview.cs (model for evaluation answers used in EvalReview.razor)
				-EvaluationServices.cs (service that communicates between the front-end web pages and the database)
			->Project
				-Project.cs (model for project listings used everywhere, primarily on the Projects.razor page)
				-ProjectService.cs (service that communicates between the front-end web pages and the database)
				
			[Latest]SPWA_DB.mdf (this is the database file to be used when restoring the local database.
			should not be absolutely needed but may be useful.
			
	Senior Web App.sln (the solution file that should be used to run the project)
	