From 9dbd1b16b59d266342569713d5d342de4227a4b7 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 6 Nov 2025 19:57:56 +0100 Subject: [PATCH] inject pdf burner params --- .../Pdf/BurnPdfCommand.cs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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; + } + /// /// ///