paidByClient; } /** * @param mixed $paidByClient */ public function setPaidByClient( $paidByClient ) { $this->paidByClient = $paidByClient; } /** * @return mixed */ public function getComment() { return $this->comment; } /** * @param mixed $comment */ public function setComment( $comment ) { $this->comment = $comment; } /** * @return mixed */ public function getProductsSold() { return $this->productsSold; } /** * @param mixed $productsSold */ public function setProductsSold( $productsSold ) { $this->productsSold = $productsSold; } /** * @return mixed */ public function getFestival() { return $this->festival; } /** * @param mixed $festival */ public function setFestival( $festival ) { $this->festival = $festival; } /** * @return mixed */ public function getUser() { return $this->user; } /** * @param mixed $user */ public function setUser( $user ) { $this->user = $user; } /** * @return mixed */ public function getAmount() { return $this->amount; } /** * @param mixed $amount */ public function setAmount( $amount ) { $this->amount = $amount; } /** * @return mixed */ public function getId() { return $this->id; } /** * @param mixed $id */ public function setId( $id ) { $this->id = $id; } /** * @return mixed */ public function getProducts() { return $this->products; } /** * @param mixed $products */ public function setProducts( $products ) { $this->products = $products; } /** * @return mixed */ public function getDate() { return $this->date; } /** * @param \DateTime $date */ public function setDate( \DateTime $date ) { $this->date = $date; } /** * Constructor */ public function __construct() { $this->productsSold = new \Doctrine\Common\Collections\ArrayCollection(); } /** * Add productsSold * * @param \AppBundle\Entity\ProductSold $productsSold * * @return SellRecord */ public function addProductsSold( \AppBundle\Entity\ProductSold $productsSold ) { $this->productsSold[] = $productsSold; return $this; } /** * Remove productsSold * * @param \AppBundle\Entity\ProductSold $productsSold */ public function removeProductsSold( \AppBundle\Entity\ProductSold $productsSold ) { $this->productsSold->removeElement( $productsSold ); } }