Last active
September 23, 2020 21:41
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
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