Exemplo n.º 1
0
 public function handle(UpdateCouponCommand $command)
 {
     $couponDTO = $command->getCouponDTO();
     $coupon = $this->couponService->findOneById($couponDTO->id);
     CouponDTOBuilder::setFromDTO($coupon, $couponDTO);
     $this->couponService->update($coupon);
 }
Exemplo n.º 2
0
 public function getCouponDTO()
 {
     return $this->couponDTOBuilder->build();
 }