src/Domain/Entity/DetalleMinutaSistemaRetribucion.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Domain\Entity;
  3. use DateTimeInterface;
  4. use Symfony\Component\Uid\Uuid;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. class DetalleMinutaSistemaRetribucion extends DetalleMinuta
  7. {
  8.     private ?SistemaRetribucion $sistemaRetribucion null;
  9.     public function getSistemaRetribucion(): ?SistemaRetribucion
  10.     {
  11.         return $this->sistemaRetribucion;
  12.     }
  13.     public function setSistemaRetribucion(?SistemaRetribucion $sistemaRetribucion): static
  14.     {
  15.         $this->sistemaRetribucion $sistemaRetribucion;
  16.         return $this;
  17.     }
  18. }