Exemple #1
0
 public IActionResult AddVote(int id, bool vote)
 {
     _courseSerervice.AddVote(_userService.GetUserIdByUserName(User.Identity.Name), id, vote);
     return(PartialView("CourseVote", _courseSerervice.GetCourseVotes(id)));
 }