/**
  * @param UuidInterface[] $productIds
  * @param int $limit
  * @return Product[]
  */
 public function getRelatedProductsByIds(array $productIds, $limit = 12)
 {
     return $this->productRepository->getRelatedProductsByIds($productIds, $limit);
 }