Exemplo n.º 1
0
 public ActionResult AddComment(CreateCommentViewModel model)
 {
     model.UserId = GetCurrentUserId();
     _ticketService.AddComment(model);
     return(Json(new { success = true }));
 }