Ejemplo n.º 1
0
 /// <summary>
 /// Get a list of all Blocked friends by the userId
 /// </summary>
 /// <param name="userId"></param>
 /// <returns></returns>
 public List <Friend> GetBlockedFriends(int userId) => _repository.GetBlockedFriends(userId);
Ejemplo n.º 2
0
 public List <Friend> GetBlockedFriends(int userId)
 {
     return(_context.GetBlockedFriends(userId));
 }