public ActionResult Delete(Category model)
        {
            var biz = new CategoryBiz();

            biz.Eliminar(model);
            return(RedirectToAction("Index"));
        }
Esempio n. 2
0
        public ActionResult Delete(Category model)
        {
            var biz = new CategoryBiz();

            biz.Eliminar(model);

            return(View(model));
        }