public PartialViewResult ProductCategory()
        {
            var model           = new ProductCategoryDataAccess();
            var productcategory = model.ListAll();

            return(PartialView(productcategory));
        }
Exemple #2
0
        public PartialViewResult _ProductCategory1()
        {
            var model = new ProductCategoryDataAccess().ListAll1();

            return(PartialView(model));
        }