Esempio n. 1
0
 /**
  * Fetches all albums filtered by pagination
  * 
  * @param integer $page Current page
  * @param integer $itemsPerPage Items per page count
  * @return array
  */
 public function fetchAllByPage($page, $itemsPerPage)
 {
     return $this->prepareResults($this->albumMapper->fetchAllByPage($page, $itemsPerPage));
 }