using EnvelopeGenerator.Application.Common.Configurations;
using GdPicture14;
using MediatR;
namespace EnvelopeGenerator.Application.Pdf;
///
///
///
public class BurnPdfCommand : IRequest
{
}
///
///
///
public class BurnPdfCommandHandler : IRequestHandler
{
///
///
///
private readonly PDFBurnerParams _pdfBurnerParams;
private readonly AnnotationManager _manager;
///
///
///
///
///
public BurnPdfCommandHandler(PDFBurnerParams pdfBurnerParams, AnnotationManager manager)
{
_pdfBurnerParams = pdfBurnerParams;
_manager = manager;
}
///
///
///
///
///
///
///
public Task Handle(BurnPdfCommand request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}