Пример #1
0
 public function deleteCoinCreditAction()
 {
     $id = (int) $this->get('id');
     $type = (int) $this->get('type');
     $tradeModel = new TradeModel();
     $result = $tradeModel->deleteCoinCredit($id, $type);
     return $result;
 }