Esempio n. 1
0
 /**
  * Fetch all by category and page
  * 
  * @param string $categoryId
  * @param integer $page
  * @param integer $itemsPerPage
  * @return array
  */
 public function fetchAllByCategoryAndPage($categoryId, $page, $itemsPerPage)
 {
     return $this->prepareResults($this->imageMapper->fetchAllByCategoryAndPage($categoryId, $page, $itemsPerPage));
 }