예제 #1
0
 public ActionResult GetLikesForThisPost(int id)
 {
     lr = new LikeRepository();
     return(Content(lr.GetAllLikesOfSpecificPost(id).ToString()));
 }