Exemple #1
0
        public async Task <IActionResult> DeleteUserFollowingAsync(int userId, int followerId)
        {
            var result = await _service.DeleteUserFollowingAsync(userId, followerId);

            return(Ok(result));
        }