Uh oh!
There was an error while loading. Please reload this page.
Feature/4725 web api persistence - #890
Open
sdavis-amido wants to merge 8 commits into
Open
Conversation
sdavis-amido
commented
Jul 20, 2022
ContributorAuthor
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
sdavis-amido
commented
Jul 20, 2022
ContributorAuthor
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
sdavis-amido
commented
Jul 20, 2022
ContributorAuthor
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
sdavis-amido
commented
Jul 21, 2022
ContributorAuthor
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Kudos, SonarCloud Quality Gate passed! |
Uh oh!
There was an error while loading. Please reload this page.
| * @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) { |
RhysBushnellforce-pushed
the
feature/4725-Web-API-Persistence
branch
from
June 12, 2026 12:58
0e50674 to
7af7370Compare
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 freeto 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