public ActionResult PatchComm(int commId, Comment comment) { try { _commService.PatchComm(commId, comment); return(Ok()); } catch (Exception ex) { return(BadRequest(ex)); } }