public SettingsController(IDashboardContainer d, KPIContext context)
 {
     _context = context;
     _d       = d;
 }
 public DashboardsController(IDashboardContainer d, KPIContext context)
 {
     _d       = (DashboardContainer)d;
     _context = context;
 }
Beispiel #3
0
 // Im Konstruktor wird eine Referenz auf die Konfiguration und den Datenbankkontext übergeben
 public KpiController(IDashboardContainer d, KPIContext context, IConfiguration config, IHostingEnvironment env)
 {
     _context = context;
     _d       = d;
 }