public JsonResult Get(int complaintId) { try { using (ComplaintService complaintService = new ComplaintService()) { return(Json(complaintService.Get(complaintId), JsonRequestBehavior.AllowGet)); } } catch (System.Exception ex) { throw; } }