Untitled
Anonymous
csharp
01/06/2024 6:35 PM
532 B
25
Indexable
public void GenerateClientReport(Client client, string pdfOutputPath)
{
string projectDirectory = AppDomain.CurrentDomain.BaseDirectory;
string pathToHtmlFile = projectDirectory + "/Services/PdfGenerator/pdf-template.html";
string htmlContent = File.ReadAllText(pathToHtmlFile);
htmlContent = RenderTemplate(htmlContent, client);
ConvertHtmlToPdf(htmlContent, pdfOutputPath);
}Editor is loading...
Leave a Comment