move pdf burner to application layer

This commit is contained in:
Developer 02
2025-11-06 19:51:15 +01:00
parent 1843119b1b
commit c649c93921
5 changed files with 88 additions and 35 deletions

View File

@@ -0,0 +1,39 @@
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;
/// <summary>
///
/// </summary>
public class BurnPdfCommand : IRequest
{
}
/// <summary>
///
/// </summary>
public class BurnPdfCommandHandler : IRequestHandler<BurnPdfCommand>
{
/// <summary>
///
/// </summary>
private readonly PDFBurnerParams _pdfBurnerParams;
/// <summary>
///
/// </summary>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public Task Handle(BurnPdfCommand request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}