}//END OF INVENTORY COUNT

        private static void InventorySearch()
        {
            ProductInventory myInventory;

            while (true)
            {
                try
                {
                    myInventory = new ProductInventory();
                    myInventory.LoadInventory();
                    Console.WriteLine($"\n******   The search results are below: \n{myInventory.GetSearchProducts()}");

                    break;
                }
                catch (Exception ex)
                {
                    Console.WriteLine("\n****** ERROR: " + ex.Message);
                }
            }
        }