public static List GetCategory()

in AdventureWorksMVC/Business/ProductManager.cs [19:26]


        public static List<ProductCategory> GetCategory(int categoryId)
        {
            List<ProductCategory> catList = null;
            //catList = (from cat in Common.DataEntities.ProductCategory
            //           where cat.ParentCategory.ProductCategoryID == categoryId
            //           select cat).ToList();
            return catList;
        }