| 12345678910111213 |
- package InventoryManager;
-
- /**
- * Finish the InventoryManager Class in the InventoryManager Package,
- * which manages an inventory of products. Create a product class which has a price,
- * id, and quantity on hand. Then create an inventory class which keeps track of various
- * products and can sum up the inventory value.
- *
- * Note: Inventory and InventoryManager should not be the same class!!!
- */
- public class InventoryManager {
- }
|