Example #1
0
 public ActionResult BuildPaganationSLList(SCIListModel model)
 {
     try
     {
         return(Json(new { NOP = (new ServiceCausingIssueModel()).BuildPaganationSLList(model) }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Json(new { error = ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }
Example #2
0
 public ActionResult fillCausingSearchGrid(SCIListModel model)
 {
     try
     {
         return(Json((new ServiceCausingIssueModel()).FillSCISSearchGrid(model), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Json(new { error = ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }