|
123456789101112131415161718192021222324252627 |
- <?php
-
- namespace Lc\CaracoleBundle\Doctrine\Extension ;
-
- interface PriceInterface
- {
- /**
- * Retourne le prix hérité
- *
- * @return float
- */
- public function getPriceInherited();
-
- /**
- * Retourne le TaxRate hérité
- *
- * @return entity
- */
- public function getTaxRateInherited();
-
- /**
- * Retourne le Unit hérité
- *
- * @return float
- */
- public function getUnitInherited();
- }
|