akaunting/app/Interfaces/Utility/TransactionNumber.php

12 lines
293 B
PHP
Raw Normal View History

2023-05-15 19:10:45 +03:00
<?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;
}