Files
2026-04-30 17:12:28 +02:00

17 lines
373 B
C#

namespace Lux.Report.Data.Services
{
public interface IPdfReportService
{
Task<byte[]> GeneratePdfAsync(
int reqId,
string repType,
string selFile,
string codGroup,
string imgFullUrl,
string dataFullUrl
);
Task<byte[]> GenerateDummyPdfAsync(string reason);
}
}