gstRepository = $gstRepository; } public function getAllList() { return $this->gstRepository->getAllList(); } public function getActiveList() { return $this->gstRepository->getActiveList(); } public function create($data) { return $this->gstRepository->create($data); } public function update($data, $id) { return $this->gstRepository->update($data, $id); } public function delete($id) { return $this->gstRepository->delete($id); } }