init the handler of ReadEnvelopeReceiverQuery

This commit is contained in:
tekh 2025-08-21 17:37:37 +02:00
parent 3a62f5317f
commit a4fffaa9b9

View File

@ -0,0 +1,22 @@
using EnvelopeGenerator.Application.Dto.EnvelopeReceiver;
using MediatR;
namespace EnvelopeGenerator.Application.EnvelopeReceivers.Queries;
/// <summary>
///
/// </summary>
public class ReadEnvelopeReceiverQueryHandler : IRequestHandler<ReadEnvelopeReceiverQuery, EnvelopeReceiverDto>
{
/// <summary>
///
/// </summary>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public Task<EnvelopeReceiverDto> Handle(ReadEnvelopeReceiverQuery request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}