id; } public function getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(\DateTimeInterface $fecha): self { $this->fecha = $fecha; return $this; } public function getEstado(): ?bool { return $this->estado; } public function setEstado(bool $estado): self { $this->estado = $estado; return $this; } public function getNumerofactura(): ?string { return $this->numerofactura; } public function setNumerofactura(string $numerofactura): self { $this->numerofactura = $numerofactura; return $this; } public function getFilepdf(): ?string { return $this->filepdf; } public function setFilepdf(string $filepdf): self { $this->filepdf = $filepdf; return $this; } public function getPrecio(): ?float { return $this->precio; } public function setPrecio(float $precio): self { $this->precio = $precio; return $this; } public function getImpuestos(): ?float { return $this->impuestos; } public function setImpuestos(float $impuestos): self { $this->impuestos = $impuestos; return $this; } public function getTotal(): ?float { return $this->total; } public function setTotal(float $total): self { $this->total = $total; return $this; } public function getIdCliente(): ?Clientes { return $this->idCliente; } public function setIdCliente(?Clientes $idCliente): self { $this->idCliente = $idCliente; return $this; } }