Ejemplo n.º 1
0
        public ActionResult DashBoard()
        {
            DashboardData dashboardData = serviceProviderHelper.GetDashboardData();

            ViewBag.SPBilledTotalAmount      = dashboardData.SPBilledTotalAmount;
            ViewBag.NumberOfSPTesting        = dashboardData.NumberOfSPTesting;
            ViewBag.ProvidersInProduction    = dashboardData.ProvidersInProduction;
            ViewBag.ProviderWentLiveLastWeek = dashboardData.ProviderWentLiveLastWeek;
            ViewBag.QAGoLive           = dashboardData.QAGoLive;
            ViewBag.NoOfSPBilled       = dashboardData.NoOfSPBilled;
            ViewBag.SPBeingWhiteListed = dashboardData.SPBeingWhiteListed;
            List <ServiceProviderEntity> serviceProviders = serviceProviderHelper.GetServiceProviders();

            return(View(serviceProviders));
        }