public JsonResult GetException(Guid userUid)
        {
            JsonResult result = new JsonResult();

            result.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
            result.Data = exceptionService.GetException(userUid);
            return(result);
        }
Example #2
0
 public string GetException(string id = "")
 {
     return(_exceptionService.GetException(id));
 }