public ActionResult GetCount(string Id)
        {
            var Follower = _followService.GetFollowerByUser(Id, User.Identity.GetUserId());

            ViewBag.Count      = _followService.GetFollowersByUser(Id).Count();
            ViewBag.UserId     = Id;
            ViewBag.IsFollowed = Follower != null;
            return(PartialView());
        }