コード例 #1
0
ファイル: ExcelExporter.cs プロジェクト: bpug/MetronaWT
 public ExcelExporter(IMeteoGtzService meteoGtzService, IBundeslandService bundeslandService)
 {
     this.meteoGtzService = meteoGtzService;
     this.bundeslandService = bundeslandService;
     webExcelExporter = new WebExcelEsporter
     {
         EnableStylesExport = false,
         DownloadName = "Berechnungsgrundlage",
         ExportMode = ExportMode.Download
     };
     webExcelExporter.Exporting += WebExcelExporterOnExporting;
 }
コード例 #2
0
ファイル: PdfReport.cs プロジェクト: bpug/MetronaWT
 public PdfReport (IMeteoGtzService meteoGtzService, IKlimaService klimaService, IBundeslandService bundeslandService)
 {
     this.meteoGtzService = meteoGtzService;
     this.bundeslandService = bundeslandService;
     this.klimaService = klimaService;
 }