Ejemplo n.º 1
0
        public ActionResult Delete(string id)
        {
            INotifyTypeDao dao = _notifyTypeDao;

            dao.Delete(dao.Get(id));
            return(Json(new { success = true }, JsonRequestBehavior.AllowGet));
        }