예제 #1
0
 /**
  * Returns minimal product's price associated with provided category id
  * It's aware only of published products
  * 
  * @param string $categoryId
  * @return float
  */
 public function getMinCategoryPriceCount($categoryId)
 {
     return (double) $this->productMapper->getMinCategoryPriceCount($categoryId);
 }