Skip to content

Instantly share code, notes, and snippets.

@NinoFloris
Created January 31, 2017 17:29
Show Gist options
  • Save NinoFloris/adaf5de734211587e01a20ed203077ce to your computer and use it in GitHub Desktop.
Save NinoFloris/adaf5de734211587e01a20ed203077ce to your computer and use it in GitHub Desktop.
Controller action example
public class UsersController
{
[HttpGet]
public Task<IEnumerable<Many.Model>> GetMany(Many.Query query, [FromServices]IMediator mediator)
{
return mediator.SendAsync(query);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment