You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 satır
968B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Config;
  3. use Lc\SovBundle\Model\User\UserInterface;
  4. interface TaxRateInterface
  5. {
  6. public function getCreatedBy(): ?UserInterface;
  7. public function setCreatedBy(?UserInterface $createdBy);
  8. public function getUpdatedBy(): ?UserInterface;
  9. public function setUpdatedBy(?UserInterface $updatedBy);
  10. public function getDevAlias(): ?string;
  11. public function setDevAlias(?string $devAlias);
  12. public function getBehaviorTaxRateChoices(): array;
  13. public function getTitle(): ?string;
  14. public function setTitle(string $title): TaxRateInterface;
  15. public function getValue(): ?float;
  16. public function setValue(float $value): TaxRateInterface;
  17. public function getCreatedAt(): ?\DateTimeInterface;
  18. public function setCreatedAt(\DateTimeInterface $createdAt);
  19. public function getUpdatedAt(): ?\DateTimeInterface;
  20. public function setUpdatedAt(\DateTimeInterface $updatedAt);
  21. }