repository = $repository; } public function getScientists($perPage) { return $this->repository->paginate($perPage); } public function getScientist($id) { return $this->repository->findWithAwards($id); } }