Feature/4725 web api persistence - #890
Open
sdavis-amido wants to merge 8 commits into
Open
Conversation
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
Kudos, SonarCloud Quality Gate passed! |
| * @return List of MenuDTO | ||
| */ | ||
| List<Menu> findAllByRestaurantIdAndNameContaining( | ||
| UUID restaurantId, String searchTerm, Integer pageSize, Integer pageNumber); |
| * @return List of MenuDTO | ||
| */ | ||
| public List<Menu> findAllByNameContaining( | ||
| String searchTerm, Integer pageSize, Integer pageNumber); |
| * @param pageNumber page no | ||
| * @return List of MenuDTO | ||
| */ | ||
| public List<Menu> findAllByRestaurantId(UUID restaurantId, Integer pageSize, Integer pageNumber); |
| return new ResourceUpdatedResponse(categoryId); | ||
| } | ||
|
|
||
| public void delete(UUID menuId, UUID categoryId, String correlationId) { |
| private final UpdateCategoryMapper updateCategoryMapper; | ||
|
|
||
| public ResourceCreatedResponse create( | ||
| UUID menuId, @Valid CreateCategoryRequest body, String correlationId) { |
| return new ResourceUpdatedResponse(itemId); | ||
| } | ||
|
|
||
| public void delete(UUID menuId, UUID categoryId, UUID itemId, String correlationId) { |
| UUID categoryId, | ||
| UUID itemId, | ||
| @Valid UpdateItemRequest body, | ||
| String correlationId) { |
| } | ||
| } | ||
|
|
||
| public void delete(UUID menuId, String correlationId) { |
| UUID restaurantId, | ||
| Integer pageSize, | ||
| Integer pageNumber, | ||
| String correlationId) { |
RhysBushnell
force-pushed
the
feature/4725-Web-API-Persistence
branch
from
June 12, 2026 12:58
0e50674 to
7af7370
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.








4725 - Add CosmosDB persistence to the WebAPI project
📲 What
Add CosmosDB persistence to the WebAPI project to bring it in line with the other CQRS projects.
🤔 Why
For parity with CQRS projects.
🛠 How
Added CosmosDB implementation as per the CQRS projects.
👀 Evidence
N/A
🕵️ How to test
mvn clean test✅ Acceptance criteria Checklist