Menu

Inventory Class Create Application Stores Inventory Records Retail Store Application Inven Q43788685

Inventory Class

Create an application that stores inventory records for a retailstore. The application should have an Inventory class with thefollowing properties:

invNumber: A string used to hold an inventory number. Each itemin the inventory should have a unique inventory number.

Description: A string that holds a brief description of theitem.

Cost; a Decimal Value that holds the amount that the retailstore paid for the item.

Retail: A decimal value that holds the retail price for theitem.

Onhand: An integer value that holds the number of items on hand.It canot be less than 0.

The application should store Inventory class objects in a Listcollection.

Create an input form in the application that allows users toinput new inventory items to be added to the List collection. Theuser should also be able to look up items by their inventorynumber. Inventory When the application ends, it should save thecontents of the List collection to a sequential text file. When theapplication starts up, it should load the data from the file intothe collection. Be sure to write the appropriate errorhandlers.

Need this written in C#

Expert Answer


Answer to Inventory Class Create an application that stores inventory records for a retail store. The application should have an …

OR