Ejemplo n.º 1
0
        public void DropdownCategory(int?CategoryID = null)
        {
            var dao = new ProductCategoryDAO();

            ViewBag.CategoryList = new SelectList(dao.GetCategoriesSelectList(), "ID", "Name", CategoryID);
        }