38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
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
|
|
{
|
|
[Produces("application/json")]
|
|
[ApiController, Route("api/query/[controller]")]
|
|
public class QueryController<TQuery, TQueryResult> : Controller
|
|
where TQuery : class
|
|
{
|
|
[HttpPost, QueryControllerAuthorization]
|
|
public async Task<ActionResult<TQueryResult>> Handle([FromServices] IQueryHandler<TQuery, TQueryResult> handler,
|
|
[FromBody] TQuery query)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
return BadRequest(ModelState);
|
|
|
|
|
|
return Ok(await handler.HandleAsync(query, this.Request.HttpContext.RequestAborted));
|
|
}
|
|
|
|
[HttpGet, QueryControllerAuthorization]
|
|
public async Task<ActionResult<TQueryResult>> HandleGet([FromServices] IQueryHandler<TQuery, TQueryResult> handler,
|
|
[FromQuery] TQuery query)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
return BadRequest(ModelState);
|
|
|
|
|
|
return Ok(await handler.HandleAsync(query, this.Request.HttpContext.RequestAborted));
|
|
}
|
|
}
|
|
}
|