Files
lux/Lux.Report.Data/Services/IPdfReportService.cs
T

16 lines
344 B
C#

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