Exemplo n.º 1
0
 public EmailService(ILogger logger, IEmailSender emailSender, ITemplateParserService emailTemplateParserService, string bccEmailAddress, string fromEmailAddress)
 {
     this.logger = logger;
     this.emailSender = emailSender;
     this.emailTemplateParserService = emailTemplateParserService;
     this.bccEmailAddress = bccEmailAddress;
     this.fromEmailAddress = fromEmailAddress;
 }
Exemplo n.º 2
0
 public PdfExportService(ITemplateParserService templateParserService, string wkhtmltopdfPath)
 {
     this.templateParserService = templateParserService;
     this.wkhtmltopdfPath       = wkhtmltopdfPath;
 }
Exemplo n.º 3
0
 public PdfExportService(ITemplateParserService templateParserService, string wkhtmltopdfPath)
 {
     this.templateParserService = templateParserService;
     this.wkhtmltopdfPath = wkhtmltopdfPath;
 }