Last active
November 24, 2020 00:01
-
-
Save MuizMahdi/113b84250d201ddd6b40b571d6555d24 to your computer and use it in GitHub Desktop.
This file contains 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
// In the API Controller | |
// ... | |
public String createOrder(CreateOrderCommand order) { | |
// ... | |
var orderCreationResult = new Pipeline<>(new CreateOrderStageHandler(order)); | |
return orderCreationResult; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment