Untitled

 avatar
unknown
csharp
2 years ago
397 B
4
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