/// <summary>
        /// UI to view specific store inventory
        /// </summary>
        private void ViewInventory()
        {
            string storeName = _validate.ValidateString("\nEnter name of store you want to view");

            Log.Information("Location name input");
            try
            {
                // Retrieve and display specific inventory
                List <Product> products  = _productBL.GetAllProducts();
                Location       location  = _locationBL.GetLocation(storeName);
                Inventory      inventory = _inventoryBL.GetStoreInventory(location.Id);
                foreach (Product product in products)
                {
                    Console.WriteLine($"{product.ItemName}: {inventory.Quantity}");
                }
                Console.WriteLine("");
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }