akaunting/app/Interfaces/Utility/DocumentNumber.php

13 lines
259 B
PHP
Raw Normal View History

2023-04-29 01:43:48 +03:00
<?php
namespace App\Interfaces\Utility;
use App\Models\Common\Contact;
interface DocumentNumber
{
public function getNextNumber(string $type, ?Contact $contact): string;
public function increaseNextNumber(string $type, ?Contact $contact): void;
}