Exemplo n.º 1
0
        public ActionResult AddCategory(Category category, List <HttpPostedFileBase> images)
        {
            CategoryManage cm = new CategoryManage();

            if (cm.Add(category, images))
            {
                return(RedirectToAction("Index", "Admin"));
            }
            else
            {
                return(RedirectToAction("Index", "Admin"));
            }
        }