public ActionResult AddComent(CommentModel commentModel)
 {
     if (ModelState.IsValid)
     {
         var comment = new Comment
         {
             CommentText = commentModel.CommentText,
             CreatorId   = commentModel.CreatorId,
             RequestId   = commentModel.RequestId
         };
         _userBl.CreateComment(comment);
         return(RedirectToAction("GetRequestDetails" + "/" + Convert.ToString(commentModel.RequestId), "UserProfile"));
     }
     return(View(commentModel));
 }