/**
  * @return static
  */
 public function withPayments()
 {
     foreach ($this->entity->getPayments() as $payment) {
         $this->entityDTO->payments[] = $this->dtoBuilderFactory->getPaymentDTOBuilder($payment)->build();
     }
     return $this;
 }