From e79d7e73c6bb2a4ce0f49502ac1eeaf8e9d031f0 Mon Sep 17 00:00:00 2001 From: Kevin Tran Date: Thu, 12 Feb 2026 12:00:45 -0600 Subject: [PATCH 1/5] feat: add "/inventory-catalog" endpoint ### CC-101 - Adding an "Item/Inventory" catalog so a restaurant owner can see the possible items that can be inside of a store. This does not keep track of the actual stock value of each item or ingredient --- .../Components/Layout/NavMenu.razor | 7 +++++++ .../Inventory/DTOs/IngredientDTO.cs | 0 .../Inventory/DTOs/InventoryCatalogDTO.cs | 15 +++++++++++++++ .../Pages/Inventory/InventoryCatalog.razor | 7 +++++++ 4 files changed, 29 insertions(+) delete mode 100644 CulinaryCommandApp/Inventory/DTOs/IngredientDTO.cs create mode 100644 CulinaryCommandApp/Inventory/DTOs/InventoryCatalogDTO.cs create mode 100644 CulinaryCommandApp/Inventory/Pages/Inventory/InventoryCatalog.razor diff --git a/CulinaryCommandApp/Components/Layout/NavMenu.razor b/CulinaryCommandApp/Components/Layout/NavMenu.razor index 49be8e9..1e44cee 100644 --- a/CulinaryCommandApp/Components/Layout/NavMenu.razor +++ b/CulinaryCommandApp/Components/Layout/NavMenu.razor @@ -56,6 +56,13 @@ Inventory + + +