Пример #1
0
 public PrintController(IHtmlToPdfConverterService htmlToPdfConverter, IWebHostEnvironment webHostEnvironment)
 {
     this.htmlToPdfConverter = htmlToPdfConverter;
     this.webHostEnvironment = webHostEnvironment;
 }
Пример #2
0
 public PdfController(IHtmlToPdfConverterService htmlToPdfConverter, IPrintService printService, IWebHostEnvironment environment)
 {
     this.htmlToPdfConverter = htmlToPdfConverter;
     this.printService       = printService;
     this.Environment        = environment;
 }