Exemple #1
0
 public byte[] CreatePDF(int organisationId, string jsonString, string templateName)
 {
     try
     {
         string htmlData = CreateText(organisationId, jsonString, templateName);
         return(_pdfService.CreatePDFfromHtml(htmlData));
     }
     catch (Exception ex)
     {
         throw new Exception();
     }
 }