public async Task Post(int id, [FromBody] CreateModel model) { await _commands.CommandAsync(new Create.Command(id, model.Name)); }
public void Start() { _commands.CommandAsync(new TestCommand()); _events.PublishAsync(new TestEvent()); _requests.RequestAsync <TestRequest, TestResponse>(new TestRequest()); }