Example #1
0
        public ActionResult AddGradePost(int postId)
        {
            string userId = User.Identity.GetUserId();

            postService.AddRatingPost(userId, postId);
            return(RedirectToAction("Index", "Home"));
        }