using MediatR; namespace BuildingBlocks.Core.CQRS; public interface IQueryHandler : IRequestHandler where TQuery : IQuery where TResponse : notnull { }