/// <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);
public List <Friend> GetBlockedFriends(int userId) { return(_context.GetBlockedFriends(userId)); }