Your job for this project is to create an application that will quantify and summarize data from the excel sheet titled “Super_Bowl_Project.csv”. Construct an application that will read data from the Super_Bowl_Project.csv spreadsheet and assign each of the row items as an object within your program. Once your program has created an instance for each row within the spreadsheet begin to manipulate the data according to the bullet points below. Once you have constructed code for the following bullet points generate a text file that outputs the quantified and summarized data.
- The team name
- The Year the team won
- The winning quarterback
- The winning coach
- The MVP
- The point difference between the winning pts and losing pts
- The year
- The winning team
- The losing team
- The city
- The state
- The stadium
- The city
- The state
- The stadium
- Name of MVP
- The winning team
- The losing team
- Which coach lost the most super bowls?
- Which coach won the most super bowls?
- Which team(s) won the most super bowls?
- Which team(s) lost the most super bowls?
- Which Super bowl had the greatest point difference?
- What is the average attendance of all super bowls?
Please include a title for each output to the text file along with proper spacing
Allow the end-user to type in the desired path where file will write and read from. If the file path does not exist, the program will end gracefully.
Your program should read the file from where the project folder exist.
Create using .NET Core Console Application
The Program should make use of Object Oriented Principles discussed in class and utilize at least one additional class structure beyond the class thats provided in the starter code.
Instead of outputting to a text file generate a HTML document that displays the queried results. The HTML document should also include CSS which provides the document with style.
This challenge will require a basic understanding of HTML and CSS.