コード例 #1
0
 public ActionResult BuildPaganationParkingList(ParkingListModel model)
 {
     try
     {
         return(Json(new { NOP = (new ParkingModel()).BuildPaganationParkingList(model) }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Json(new { error = ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }
コード例 #2
0
 public ActionResult FillParkingSearchGrid(ParkingListModel model)
 {
     try
     {
         return(Json((new ParkingModel()).FillParkingSearchGrid(model), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Json(new { error = ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }