Example #1
0
 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;
 }
Example #2
0
 public PdfReport (IMeteoGtzService meteoGtzService, IKlimaService klimaService, IBundeslandService bundeslandService)
 {
     this.meteoGtzService = meteoGtzService;
     this.bundeslandService = bundeslandService;
     this.klimaService = klimaService;
 }