File "PaymentDistributionsRepositoryInterface.php"
Full path: /var/www/html/back/app/Repositories/ProjectGroup/PaymentDistributionsRepositoryInterface.php
File
size: 0.53 KB (539 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
namespace App\Repositories\CashFlowIndex\Interfaces;
use Illuminate\Support\Collection;
interface PaymentDistributionsRepositoryInterface
{
public function getPaymentDistributions(int $modelId,$filters, $typeEnum): Collection;
public function getPaymentDistributionsProject($modelId, $filters, $typeEnum): Collection;
public function getNotDistributionsPayment(int $modelId, $filters, bool $credit): Collection;
public function getNotDistributionsPaymentProject($modelId, $filters, bool $credit): Collection;
}