Exemplo n.º 1
0
        public ActionResult DeleteNews(int id)
        {
            NewsDataStore Obj = new NewsDataStore();

            if (Obj.DeleteNews(id) == true)
            {
                return(RedirectToAction("News"));
            }
            else
            {
                return(View("ErrorEventArgs"));
            }
        }