public function actionDoctorLst() { $Doctor = new Doctor(); $Doctor->set_prop_from_arr($_REQUEST); $ar['tbl'] = $Doctor->lst(); Core::encode_echo($ar); }
public function actionLst() { $Doctor = new Doctor(); $Doctor->set_prop_from_arr($_REQUEST); $Doctor->hosp_id = $this->_user['hosp_id']; $ar['hosp_id'] = $Doctor->hosp_id; $ar['tbl'] = $Doctor->lst(); Core::encode_echo($ar); }