add invoice respository
This commit is contained in:
parent
193e35e21b
commit
7e8d82384a
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Repositories\Import\Quickbooks;
|
||||
|
||||
use App\Repositories\Import\Quickbooks\Contracts\RepositoryInterface as QuickbooksInterface;
|
||||
|
||||
class InvoiceRepository extends Repository implements QuickbooksInterface
|
||||
{
|
||||
protected string $entity = "Invoice";
|
||||
}
|
||||
Loading…
Reference in New Issue