Пример #1
0
 /**
  * Fetches latest product entities
  * 
  * @param integer $limit Limit for fetching
  * @param integer $categoryId Optionally can be filtered by category id
  * @return array
  */
 public function fetchLatestPublished($limit, $categoryId = null)
 {
     return $this->prepareResults($this->productMapper->fetchLatestPublished($limit, $categoryId));
 }