/**
  * 出店予約した全てのフリーマーケットの情報を取得します
  *
  * @access public
  * @param int $page ページ
  * @param int $row_count 1ページの件数
  * @return mixed
  * @author shimma
  */
 public function getEntries($page = 1, $row_count = 30)
 {
     return \Model_Entry::getUserEntries($this->user_id, $page, $row_count);
 }