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.

27 lines
503B

  1. <?php
  2. namespace Lc\ShopBundle\Context ;
  3. interface PriceInterface
  4. {
  5. /**
  6. * Retourne le prix hérité
  7. *
  8. * @return float
  9. */
  10. public function getPriceInherited();
  11. /**
  12. * Retourne le TaxRate hérité
  13. *
  14. * @return entity
  15. */
  16. public function getTaxRateInherited();
  17. /**
  18. * Retourne le Unit hérité
  19. *
  20. * @return float
  21. */
  22. public function getUnitInherited();
  23. }