17 lines
373 B
C#
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);
|
|
}
|
|
}
|