Exemplo n.º 1
0
        public void LoadDashBoard()
        {
            InventoryBL bl     = new InventoryBL();
            var         counts = bl.GetDashboardDetails();

            spnBrandsCount.InnerHtml     = Convert.ToString(counts.GetType().GetProperty("BrandsCount").GetValue(counts, null));
            spnCategoriesCount.InnerHtml = Convert.ToString(counts.GetType().GetProperty("CategoriesCount").GetValue(counts, null));
        }