示例#1
0
        // GET: Orders/Delete
        public ActionResult Delete(int id)
        {
            var op = new OrderProcess();

            op.Delete(id);
            return(RedirectToAction("Index"));
        }