Esempio n. 1
0
 /**
  * Remove dot
  *
  * @param \AdminBundle\Entity\Dots $dot
  */
 public function removeDot(Dot $dot)
 {
     $this->dots->removeElement($dot);
 }
Esempio n. 2
0
 /**
  * Remove products
  *
  * @param \AdminBundle\Entity\Product $products
  */
 public function removeProduct(\AdminBundle\Entity\Product $products)
 {
     $this->products->removeElement($products);
 }
Esempio n. 3
0
 /**
  * Remove image
  *
  * @param \Ara\UploadBundle\Entity\Image $image
  */
 public function removeImage(Image $image)
 {
     $this->images->removeElement($image);
 }
Esempio n. 4
0
 /**
  * Remove product
  *
  * @param \AdminBundle\Entity\Product $product
  */
 public function removeProduct(Product $product)
 {
     $this->products->removeElement($product);
 }