public ActionResult GetNetworkStatsAndIncidents() { ApplicationDbContext db = new ApplicationDbContext(); var stats = PerformanceManager.GetNetworkStatisticsAndIncidents(db); return(Json(new { ProductionUnitNumber = stats.productionUnitNumber, TotalMonthlyIncident = stats.totalMonthlyIncident, TotalAnnuallyIncident = stats.totalAnnuallyIncident, }, JsonRequestBehavior.AllowGet)); }