Пример #1
0
 /// <summary>
 /// Get all the id's from the users friend
 /// </summary>
 /// <param name="userId"></param>
 /// <returns></returns>
 public List <int> GetFriendIds(int userId) => _repository.GetAllFriendsId(userId);
Пример #2
0
 public List <int> GetAllFriendsId(int userId)
 {
     return(_context.GetAllFriendsId(userId));
 }