Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question: THIS ABSOLUTELY MUST BE IN C# CSE1322 Lab 2 Concept Summary: 1. Class design 2. Encapsulation, modularity and reusability Build the StockItem Class: Design

Question: THIS ABSOLUTELY MUST BE IN C#

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

CSE1322 Lab 2 Concept Summary: 1. Class design 2. Encapsulation, modularity and reusability Build the StockItem Class: Design and implement a class named StockItem that can be used to keep track of items in stock at a store. Each stock item object must include the following: A variable named description which will hold a description of a stock item. A variable named id which holds a unique integer. A variable named price which holds the price rounded to the nearest penny. A variable named quantity which indicates how many are in stock. Each stock item must have a unique ID number generated for each newly instantiated stock item object. In order to do this, you'll need a static variable. Stockitem class must include a: Default constructor Overloaded constructor that takes description, a price, and a current quantity Overridden toString/ToString method that prints all details of the stock item. Methods of the StockItem object must include the following: Getter Methods: o Retrieve the description of the item o Retrieve the id number of the item o Retrieve the price of the item Retrieve the quantity of the item that is currently in stock Setter Methods: o Set a new price for the item Should take in a new price and set it If the new price is below 0, print an error. o Lower the quantity in stock Should take in a quantity and lower the objects quantity. If the quantity would drop below 0, print an error. o Raise the quantity in stock Should take in a quantity and increase the objects quantity. Building the Driver: Design a Driver program which can be used by a tiny convenience store that only sells Milk and Bread. Create an object called milk. Set its description to 1 Gallon of Milk, its price to $3.60 and its quantity to 15. Create an object called bread. Set its description to "1 Loaf of Bread", its price to $1.98 and its quantity to 30. Present the user with a menu as follows: 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit Continue reading in the users choice, until they choose option 8. If the user chooses 1 or 2, call the lowerQuantity method in the milk or bread object as appropriate. If the user chooses 3 or 4, prompt the user for a new price and set the price of Milk or Bread using the setPrice method in the appropriate object. If the user chooses 5 or 6, prompt the user for the new quantity of Milk or bread, and call raiseQuantity in the appropriate object If the user chooses 7 print out the milk and bread object. You should just be able to print(milk) and print(bread) Sample Output: 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 7 Milk: Item number: 0 is 1 Gallon of Milk has price 3.6 we currently have 15 in stock Bread: Item number: 1 is 1 Loaf of bread has price 1.98 we currently have 30 in stock 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 1 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 2 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 1 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 3 What is the new price for Milk 4.00 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 7 Milk: Item number: 0 is 1 Gallon of Milk has price 4.0 we currently have 13 in stock Bread: Item number: 1 is 1 Loaf of bread has price 1.98 we currently have 29 in stock 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 6 How many bread did we get? 5 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 7 Milk: Item number: O is 1 Gallon of Milk has price 4.0 we currently have 13 in stock Bread: Item number: 1 is 1 Loaf of bread has price 1.98 we currently have 34 in stock 1. Sold One Milk 2. Sold One Bread 3. Change price of Milk 4. Change price of Bread 5. Add Milk to Inventory 6. Add Bread to Inventory 7. See Inventory 8. Quit 8

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Management With Website Development Applications

Authors: Greg Riccardi

1st Edition

0201743876, 978-0201743876

More Books

Students also viewed these Databases questions

Question

=+2. Do they use a similar tone of voice and point of view?

Answered: 1 week ago

Question

Why do HCMSs exist? Do they change over time?

Answered: 1 week ago