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