File "PaymentDistributionsRepositoryInterface.php"

Full Path: /var/www/html/back/app/Repositories/Model/PaymentDistributionsRepositoryInterface.php
File size: 539 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}