Exemplo n.º 1
0
 public ActionResult PutComm(Comment comment)
 {
     try
     {
         _commService.PutComm(comment);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(BadRequest(ex));
     }
 }