Beispiel #1
0
        public ActionResult DeleteTypeProduct(long id)
        {
            var dao = new TypeProductDao();

            dao.DeleteTypeProduct(id);
            TempData["success"] = "Deleted Success";
            return(RedirectToAction("Index", "TypeProduct"));
        }