コード例 #1
0
ファイル: SSRSReportGenerator.cs プロジェクト: jhonner72/plat
        public SSRSReportGenerator(IReportingConfiguration reportingConfiguration, IFileWriter fileWriter)
        {
            this.trusteduserHeader = new RE2005.TrustedUserHeader();
            this.execHeader = new ExecutionHeader();
            this.serviceInfo = new RE2005.ServerInfoHeader();
            this.execInfo = new ExecutionInfo();
                        
            this.fileWriter = fileWriter;

            this.reportService2010Reference = new EndpointAddress(reportingConfiguration.ReportService2010Reference);
            this.reportExecution2005Reference = new EndpointAddress(reportingConfiguration.ReportExecution2005Reference);
        }
コード例 #2
0
ファイル: PathHelper.cs プロジェクト: jhonner72/plat
 public PathHelper(IFileSystem fileSystem, IReportingConfiguration reportingConfiguration)
 {
     this.fileSystem = fileSystem;
     this.reportingConfiguration = reportingConfiguration;
 }