Exemple #1
0
 /**
  * Finds all users for the given account.
  *
  * @param int $accountId
  *
  * @return array
  */
 public function findUsersByAccount($accountId, $sortBy = [])
 {
     return $this->userRepository->findUsersByAccount($accountId, $sortBy);
 }
Exemple #2
0
 /**
  * Finds all users for the given account.
  *
  * @param int $accountId
  *
  * @return array
  */
 public function findUsersByAccount($accountId)
 {
     return $this->userRepository->findUsersByAccount($accountId);
 }