Exemplo n.º 1
0
        // GET: AdminDashboard
        public ActionResult Index()
        {
            try
            {
                AV_WidgetsBL wb = new AV_WidgetsBL();
                ViewBag.Widgets = wb.ToList("GetAll");
            }
            catch (System.Exception)
            {
                // throw;
            }

            return(View());
        }
Exemplo n.º 2
0
        public ActionResult Chart(string Filter, string Value)
        {
            AD_GetQueryResultDL gr = new AD_GetQueryResultDL();

            ViewBag.Result = gr.Get(Filter, Value, null);
            //var dt= gr.Get(Filter, Value);
            //if (dt.Columns.Contains("x"))
            //{

            //}

            AV_WidgetsBL wb  = new AV_WidgetsBL();
            var          rec = wb.ToSingle("ByWidgetId", Value);

            return(PartialView("~/Views/AdminDashboard/_Chart.cshtml", rec));
        }