New-Thanasoft/thanasoft-back/app/Repositories/InvoiceRepositoryInterface.php

11 lines
214 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories;
interface InvoiceRepositoryInterface extends BaseRepositoryInterface
{
public function createFromQuote(int|string $quoteId): \App\Models\Invoice;
}