ProformaRepository.php 253 B

1234567891011121314
  1. <?php
  2. namespace Core\FacturisRepository;
  3. class ProformaRepository
  4. extends Repository
  5. implements \Core\App\Repository\Facturis\ProformaInterface
  6. {
  7. public function add($proforma)
  8. {
  9. $response = $this->insertProforma($proforma);
  10. }
  11. }