Ejemplo n.º 1
0
        public ActionResult Edit(PayRecordType obj)
        {

            base.Update<PayRecordType>(obj);
            return Json(new { IsSuccess = true });

        }
Ejemplo n.º 2
0
 public JsonResult Create(PayRecordType obj)
 {
     base.Save<PayRecordType>(obj);
     return Json(new { IsSuccess = true });
 }