Example #1
0
 public function delCard($data)
 {
     try {
         $action = new CheckoutCardAction();
         $result = $action->del($data);
         return $result ? true : false;
     } catch (Exception $e) {
         system_out("del card error:" . $e);
         throw new Exception($e);
     }
 }