Esempio n. 1
0
 /**
  * @inheritdoc
  */
 public function findById(\string $id) : ProductView
 {
     return $this->repository->findById($id);
 }
Esempio n. 2
0
 public function getProductById(GetProductByIdQuery $query)
 {
     $result = $this->viewRepository->findById($query->getId());
     $query->setResult($result);
 }