7 lines
232 B
C#
7 lines
232 B
C#
namespace AipsCore.Application.Abstract.Query;
|
|
|
|
public interface IQueryHandler<in TQuery, TResult>
|
|
where TQuery : IQuery<TResult>
|
|
{
|
|
Task<TResult> HandleAsync(TQuery query, CancellationToken cancellationToken = default);
|
|
} |