OpenXE/classes/Modules/PaymentTransaction/Service/PaymentDocumentServiceInterface.php

17 lines
425 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?php
declare(strict_types=1);
namespace Xentral\Modules\PaymentTransaction\Service;
interface PaymentDocumentServiceInterface
{
public function getOrderIdFromCreditNoteId(int $creditNoteId): ?array;
public function getOrderByOrderId(string $externalOrderId): ?array;
public function getCreditNoteFromInvoiceId(int $invoiceId): ?array;
public function getInvoiceByIntOrderId(int $intOrderId): ?array;
}