Question: You are tasked with creating an Iron Man Suit Management System in C# using only a console application ( no forms ) . This system

You are tasked with creating an Iron Man Suit Management System in C# using only a console application (no forms). This system should enable users to add new suits to a collection, search for suits, display the collection, and perform a calculation based on the quantity and price of each suit. Attached is an Addendum providing some of the Suit Names which you can use as sample data.
Requirements:
Suit Class:
Define a Suit class with attributes such as model, make, quantity, and price.
Include appropriate methods to set and get these attributes.
Suit Collection:
Implement a collection (e.g., List) to store instances of the Suit class.
Add Suits:
Create a method to add a new suit to the collection. Prompt the user to input details like model, make, quantity, and price
Search for Suits:
Implement a search method that allows the user to find a Suit by entering its model number. Display relevant details if found, or notify if the suit is not in the collection.
Display Collection:
Develop a method to display the entire suit collection, including details like model, make, quantity, and price, and the total value of each Suit (quantity * price).
Calculation:
Implement a method to calculate the total value of the entire suit collection, considering the quantity and price of each suit.
Menu-Driven Interface:
Create a menu-driven interface that allows users to choose options like adding a suit, searching, displaying the collection with total values, performing the calculation, or exiting the program.
Loop and Decision Making:
Use loops and decision-making structures to allow users to perform multiple operations without restarting the program.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!