Beispiel #1
0
        public async Task <Friends> GetFriendsByFriendIdPendingAsync(int friendId)
        {
            var userId = _logged.GetUserLoggedId();

            var friends = await _friendsRepository
                          .GetFriendsByFriendIdPendingAsync(userId, friendId)
                          .ConfigureAwait(false);

            return(friends);
        }