mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
17 lines
515 B
PHP
17 lines
515 B
PHP
<?php
|
|
/*
|
|
* SPDX-FileCopyrightText: 2022 Andreas Palm
|
|
* SPDX-License-Identifier: LicenseRef-EGPL-3.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;
|
|
}
|