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; }
public PdfExportService(ITemplateParserService templateParserService, string wkhtmltopdfPath) { this.templateParserService = templateParserService; this.wkhtmltopdfPath = wkhtmltopdfPath; }