CustomerInterface.php 115 B

12345678910
  1. <?php
  2. namespace Core\App\Repository\Facturis;
  3. interface CustomerInterface
  4. {
  5. public function getAll();
  6. }