public async Task <IActionResult> AddUserFollowingAsync(int userId, int followingId)
        {
            var result = await _service.AddUserFollowingAsync(userId, followingId);

            if (!result.Success)
            {
                return(BadRequest(result));
            }

            return(Ok(result));
        }