mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
15 lines
441 B
PHP
15 lines
441 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Modules\SubscriptionCycle;
|
|
|
|
use DateTimeInterface;
|
|
|
|
interface SubscriptionModuleInterface
|
|
{
|
|
public function CreateInvoice(int $address, DateTimeInterface $calculationDate = null);
|
|
public function CreateOrder(int $address, DateTimeInterface $calculationDate = null);
|
|
public function GetPositions(int $address, string $documentType, DateTimeInterface $calculationDate = null): array;
|
|
}
|