예제 #1
0
        public ActionResult Delete(int id)
        {
            var temp = GoodsBll.Remove(id);

            if (temp == true)
            {
                return(RedirectToAction("Index"));
            }
            else
            {
                return(View());
            }
        }