Esempio n. 1
0
        public ActionResult UpdateBox(int boxid, BoxState state, string name, decimal price, decimal bookprice)
        {
            BOX box = RemotingHelp.GetModelObject <BOX>();

            return(Json(
                       box.UpdateBox(boxid, state, name, price, bookprice),
                       JsonRequestBehavior.AllowGet
                       ));
        }