introPrefixRepository = $introPrefixRepository; } public function getAll() { return $this->introPrefixRepository->getAll(); } public function create($data) { return $this->introPrefixRepository->create($data); } public function update($data, $id) { return $this->introPrefixRepository->update($data, $id); } public function findById($id) { return $this->introPrefixRepository->find($id); } public function delete($id) { return $this->introPrefixRepository->delete($id); } }