Пример #1
0
 /**
  * Set PaymentType entity (many to one).
  *
  * @param \Entity\PaymentType $paymentType
  * @return \Entity\Order
  */
 public function setPaymentType(PaymentType $paymentType = null)
 {
     $this->paymentType = $paymentType;
     if ($paymentType) {
         $this->setPaymentTypeId($paymentType->getId());
     }
     return $this;
 }