/**
  * 対象のフリマIDのフリマ予約をキャンセルします
  *
  * @access public
  * @param int $fleamarket_id
  * @return void
  * @author shimma
  */
 public function cancelEntry($entry_id, $updated_user = null)
 {
     return \Model_Entry::cancel($entry_id, $updated_user);
 }