|
123456789101112131415161718192021222324252627 |
- <?php
-
- namespace Lc\ShopBundle\Context ;
-
- interface PriceInterface
- {
-
-
- public function getPriceInherited();
-
-
-
- public function getTaxRateInherited();
-
-
-
- public function getUnitInherited();
- }
|