<?php
namespace App\Entity;
use App\Repository\IctusPaiementPharmacieRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=IctusPaiementPharmacieRepository::class)
*/
class IctusPaiementPharmacie
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity=IctusPharmacie::class, inversedBy="ictusPaiementPharmacies")
*/
private $pharmacie;
/**
* @ORM\ManyToOne(targetEntity=IctusTypePaiement::class, inversedBy="ictusPaiementPharmacies")
*/
private $ictusTypePaiement;
public function getId(): ?int
{
return $this->id;
}
public function getPharmacie(): ?IctusPharmacie
{
return $this->pharmacie;
}
public function setPharmacie(?IctusPharmacie $pharmacie): self
{
$this->pharmacie = $pharmacie;
return $this;
}
public function getIctusTypePaiement(): ?IctusTypePaiement
{
return $this->ictusTypePaiement;
}
public function setIctusTypePaiement(?IctusTypePaiement $ictusTypePaiement): self
{
$this->ictusTypePaiement = $ictusTypePaiement;
return $this;
}
}