コード例 #1
0
 public JsonResult Get(int complaintId)
 {
     try
     {
         using (ComplaintService complaintService = new ComplaintService())
         {
             return(Json(complaintService.Get(complaintId), JsonRequestBehavior.AllowGet));
         }
     }
     catch (System.Exception ex)
     {
         throw;
     }
 }