helpRepository = $helpRepository; } public function getHelpsByType($id, $page) { if ($id && intval($id)>0) { $lists = $this->helpRepository->getHelpsByType($id, $page); } return $lists; } public function getHelps($where, $page) { $lists = $this->helpRepository->getHelps($where, $page); return $lists; } public function getHelp($where) { $lists = $this->helpRepository->getHelpInfo($where); return $lists; } }