Esempio n. 1
0
 public static Templator UsePdfRenderer(this Templator templator, PdfConfig cfg)
 {
     templator.SetRenderer(new PdfRenderer(cfg, templator.PrintTemplate));
     return(templator);
 }
Esempio n. 2
0
 public PdfRenderer(PdfConfig config, PrintTemplate template)
 {
     this.cfg      = config;
     this.template = template;
 }