using Microsoft.AspNetCore.Mvc; using PoweredSoft.CQRS.Abstractions; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace PoweredSoft.CQRS.AspNetCore.Mvc { [ApiController, Route("api/query/[controller]")] public class QueryController : Controller where TQuery : class { [HttpPost] public Task Handle([FromServices] IQueryHandler handler, [FromBody] TQuery query) { return handler.HandleAsync(query, this.Request.HttpContext.RequestAborted); } } }