Last active
September 23, 2020 21:41
-
-
Save dcomartin/6dce4e3f31b7887194c5a4fd7997df14 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
public class OrdersController : Controller | |
{ | |
private readonly IAmACommandProcessor _commandProcessor; | |
public OrdersController(IAmACommandProcessor commandProcessor) | |
{ | |
_commandProcessor = commandProcessor; | |
} | |
[HttpPost("/sales/orders/{orderId:Guid}")] | |
public IActionResult PlaceOrder([FromRoute]Guid orderId) | |
{ | |
var request = new PlaceOrder | |
{ | |
Id = Guid.NewGuid(), | |
OrderId = orderId, | |
}; | |
_commandProcessor.Post(request); | |
return NoContent(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment