akaunting/app/Interfaces/Utility/TransactionNumber.php
2023-05-15 19:10:45 +03:00

12 lines
293 B
PHP

<?php
namespace App\Interfaces\Utility;
use App\Models\Common\Contact;
interface TransactionNumber
{
public function getNextNumber(string $type, string $suffix, ?Contact $contact): string;
public function increaseNextNumber(string $type, string $suffix, ?Contact $contact): void;
}