diff --git a/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs b/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs index 8a7ef063..477fb3d7 100644 --- a/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs +++ b/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs @@ -1,10 +1,5 @@ using EnvelopeGenerator.Application.Common.Configurations; using MediatR; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace EnvelopeGenerator.Application.Pdf; @@ -25,6 +20,15 @@ public class BurnPdfCommandHandler : IRequestHandler /// private readonly PDFBurnerParams _pdfBurnerParams; + /// + /// + /// + /// + public BurnPdfCommandHandler(PDFBurnerParams pdfBurnerParams) + { + _pdfBurnerParams = pdfBurnerParams; + } + /// /// ///