src/Entity/OtherProvider/ContactPerson.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\OtherProvider;
  3. use App\Entity\OtherProvider;
  4. use App\Repository\OtherProvider\ContactPersonRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=ContactPersonRepository::class)
  8.  * @ORM\Table(name="other_provider_contact_person")
  9.  */
  10. class ContactPerson
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $name;
  22.     /**
  23.      * @ORM\Column(type="string", length=255)
  24.      */
  25.     private $lastName;
  26.     /**
  27.      * @ORM\Column(type="string", length=255)
  28.      */
  29.     private $secondLastName;
  30.     /**
  31.      * @ORM\Column(type="string", length=255)
  32.      */
  33.     private $position;
  34.     /**
  35.      * @ORM\Column(type="string", length=255)
  36.      */
  37.     private $email;
  38.     /**
  39.      * @ORM\Column(type="string", length=255)
  40.      */
  41.     private $phone;
  42.     /**
  43.      * @ORM\ManyToOne(targetEntity=OtherProvider::class, inversedBy="contactPeople")
  44.      * @ORM\JoinColumn(nullable=false)
  45.      */
  46.     private $otherProvider;
  47.     public function getId(): ?int
  48.     {
  49.         return $this->id;
  50.     }
  51.     public function getName(): ?string
  52.     {
  53.         return $this->name;
  54.     }
  55.     public function setName(string $name): self
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60.     public function getLastName(): ?string
  61.     {
  62.         return $this->lastName;
  63.     }
  64.     public function setLastName(string $lastName): self
  65.     {
  66.         $this->lastName $lastName;
  67.         return $this;
  68.     }
  69.     public function getSecondLastName(): ?string
  70.     {
  71.         return $this->secondLastName;
  72.     }
  73.     public function setSecondLastName(string $secondLastName): self
  74.     {
  75.         $this->secondLastName $secondLastName;
  76.         return $this;
  77.     }
  78.     public function getPosition(): ?string
  79.     {
  80.         return $this->position;
  81.     }
  82.     public function setPosition(string $position): self
  83.     {
  84.         $this->position $position;
  85.         return $this;
  86.     }
  87.     public function getEmail(): ?string
  88.     {
  89.         return $this->email;
  90.     }
  91.     public function setEmail(string $email): self
  92.     {
  93.         $this->email $email;
  94.         return $this;
  95.     }
  96.     public function getPhone(): ?string
  97.     {
  98.         return $this->phone;
  99.     }
  100.     public function setPhone(string $phone): self
  101.     {
  102.         $this->phone $phone;
  103.         return $this;
  104.     }
  105.     public function getOtherProvider(): ?OtherProvider
  106.     {
  107.         return $this->otherProvider;
  108.     }
  109.     public function setOtherProvider(?OtherProvider $otherProvider): self
  110.     {
  111.         $this->otherProvider $otherProvider;
  112.         return $this;
  113.     }
  114.     public function __toString()
  115.     {
  116.         return $this->name ' ' $this->lastName ' ' $this->secondLastName;
  117.     }
  118. }