contactContentRepository = $contactContentRepository; } public function getAll(){ return $this->contactContentRepository->all(); } public function update($data, $id) { return $this->contactContentRepository->update($data, $id); } public function editById($id) { return $this->contactContentRepository->edit($id); } }