Example #1
0
 public IActionResult DisLikeComment(int id)
 {
     if (ModelState.IsValid)
     {
         var model = new CommentModel();
         model.DisLikeComment(id);
         return(RedirectToAction("Index"));
     }
     return(RedirectToAction("Index"));
 }