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