Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 17, 2021 22:31
Show Gist options
  • Save dcomartin/f0e6a6b692467da0ba0725a76a71f3cd to your computer and use it in GitHub Desktop.
Save dcomartin/f0e6a6b692467da0ba0725a76a71f3cd to your computer and use it in GitHub Desktop.
public class OrderController : Controller
{
private readonly IMediator _mediator;
public OrderController(IMediator mediator)
{
_mediator = mediator;
}
[HttpGet]
public async Task<IActionResult> MyOrders()
{
var viewModel = await _mediator.Send(new GetMyOrders(User.Identity.Name));
return View(viewModel);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment