Esempio n. 1
0
        /// <summary>
        /// Applies the template to produce a report.
        /// </summary>
        protected virtual void ApplyTemplate(IReportWriter reportWriter, AttachmentContentDisposition attachmentContentDisposition, ReportFormatterOptions options)
        {
            VelocityEngine  velocityEngine  = VelocityEngineFactory.CreateVelocityEngine();
            var             helper          = new FormatHelper();
            VelocityContext velocityContext = VelocityEngineFactory.CreateVelocityContext(reportWriter, helper);
            var             writer          = GetReportWriter(velocityEngine, velocityContext, reportWriter, helper, options);

            reportWriter.WithUpdatedContentPathsAndDisposition(attachmentContentDisposition, writer.Run);
        }
 /// <summary>
 /// Applies the template to produce a report.
 /// </summary>
 protected virtual void ApplyTemplate(IReportWriter reportWriter, AttachmentContentDisposition attachmentContentDisposition, ReportFormatterOptions options)
 {
     VelocityEngine velocityEngine = VelocityEngineFactory.CreateVelocityEngine();
     var helper = new FormatHelper();
     VelocityContext velocityContext = VelocityEngineFactory.CreateVelocityContext(reportWriter, helper);
     var writer = GetReportWriter(velocityEngine, velocityContext, reportWriter, helper, options);
     reportWriter.WithUpdatedContentPathsAndDisposition(attachmentContentDisposition, writer.Run);
 }