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