public JsonResult AddDislike(int id)
 {
     if (_newsRepository.AddDislike(id))
     {
         return(Json(200));
     }
     return(Json(400));
 }