Exemplo n.º 1
0
 public ActionResult DownVote(int idRetard)
 {
     return(Json(Vote.GetValueFromList(VoteRequest.changeVote(idRetard, long.Parse(User.Identity.Name), -1))));
 }
Exemplo n.º 2
0
 public ActionResult DeleteVote(int idRetard)
 {
     return(Json(Vote.GetValueFromList(VoteRequest.DeleteVote(idRetard, Convert.ToInt32(User.Identity.Name)))));
 }
Exemplo n.º 3
0
 public ActionResult Index(int idRetard)
 {
     return(Json(Vote.GetValueFromList(VoteRequest.getVoteByRetard(idRetard)), JsonRequestBehavior.AllowGet));
 }