add CreateAnnotationCommandHandler without implementation
This commit is contained in:
parent
e51470a449
commit
faa37e0dcd
@ -7,3 +7,21 @@ namespace EnvelopeGenerator.Application.Annotations.Commands;
|
|||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public record CreateAnnotationCommand : EnvelopeReceiverQueryBase, IRequest;
|
public record CreateAnnotationCommand : EnvelopeReceiverQueryBase, IRequest;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public class CreateAnnotationCommandHandler : IRequestHandler<CreateAnnotationCommand>
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="request"></param>
|
||||||
|
/// <param name="cancel"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <exception cref="NotImplementedException"></exception>
|
||||||
|
public Task Handle(CreateAnnotationCommand request, CancellationToken cancel)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user