public IActionResult SingleDashboard()
        {
            var dashboards = new Dashboards();
            var dashboard  = new Dashboard()
            {
                Name = "Financial KPIs"
            };

            dashboard.GetDummyData(2);
            dashboards.List.Add(dashboard);

            ViewBag.KPICount = dashboards.List.Count;


            ViewBag.Dashboards = dashboards.ToJson();
            Debug.WriteLine(dashboards.ToJson());

            return(View());
        }
        public IActionResult Index()
        {
            var dashboards = new Dashboards();
            var dashboard  = new Dashboard()
            {
                Name = "Financial KPIs"
            };

            dashboard.GetDummyData(2);
            dashboards.List.Add(dashboard);

            dashboard = new Dashboard()
            {
                Name = "Product KPIs"
            };
            dashboard.GetDummyData(3);
            dashboards.List.Add(dashboard);

            dashboard = new Dashboard()
            {
                Name = "Something 1 KPIs"
            };
            dashboard.GetDummyData(4);
            dashboards.List.Add(dashboard);

            dashboard = new Dashboard()
            {
                Name = "Something 2 KPIs",
            };
            dashboard.GetDummyData(5);
            dashboards.List.Add(dashboard);

            ViewBag.KPICount = dashboards.List.Count;


            ViewBag.Dashboards = dashboards.ToJson();
            Debug.WriteLine(dashboards.ToJson());

            return(View());
        }