Example #1
0
 public ActionResult Unfollow(string id)
 {
     followUserService.DeleteFollowUser(id, User.Identity.GetUserId());
     return(RedirectToAction("UserProfile", new { id = id }));
 }