Browse Source

adding image to PointSale

packProduct
Charly 3 years ago
parent
commit
e1dff1b7ed
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      Model/PointSale/PointSaleModel.php

+ 17
- 0
Model/PointSale/PointSaleModel.php View File

use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
use Lc\CaracoleBundle\Model\User\UserPointSaleInterface; use Lc\CaracoleBundle\Model\User\UserPointSaleInterface;
use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity; use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity;
use App\Entity\File\File;


/** /**
* @ORM\MappedSuperclass() * @ORM\MappedSuperclass()
*/ */
protected $userPointSales; protected $userPointSales;


/**
* @ORM\ManyToOne(targetEntity=File::class, cascade={"persist", "remove"})
*/
protected $image;


public function __construct() public function __construct()
{ {


return $this; return $this;
} }

public function getImage(): ?File
{
return $this->image;
}

public function setImage(?File $image): self
{
$this->image = $image;

return $this;
}
} }

Loading…
Cancel
Save