コード例 #1
0
        public JsonResult IndexRest(int id)
        {
            CuentaGastosDetalle cgd = new CuentaGastosDetalle()
            {
                CuentaGastoId = id
            };

            return(Json(cgd.listCuentaGastosDetalle(), JsonRequestBehavior.AllowGet));
        }
コード例 #2
0
        //
        // GET: /CuentaGastosDetalle/

        public ActionResult Index(int id)
        {
            CuentaGastosDetalle cgd = new CuentaGastosDetalle()
            {
                CuentaGastoId = id
            };

            ViewBag.Model = cgd.listCuentaGastosDetalle();
            ViewBag.id    = id;
            return(View());
        }