InventoryManager.java 436B

12345678910111213
  1. package InventoryManager;
  2. /**
  3. * Finish the InventoryManager Class in the InventoryManager Package,
  4. * which manages an inventory of products. Create a product class which has a price,
  5. * id, and quantity on hand. Then create an inventory class which keeps track of various
  6. * products and can sum up the inventory value.
  7. *
  8. * Note: Inventory and InventoryManager should not be the same class!!!
  9. */
  10. public class InventoryManager {
  11. }