public IActionResult AddFollower([FromForm] AddFollowerViewModel model)
        {
            var user = userService.GetUserById(model.id);

            userService.AddFollower(user);

            return(RedirectToAction("SearchUser", "SearchUsers"));
        }
        public IActionResult AddFollower(Guid id)
        {
            var addFVM = new AddFollowerViewModel()
            {
                id = id
            };

            return(View(addFVM));
        }