File "TotalAmountRepositoryInterface.php"

Full Path: /var/www/html/back/app/Repositories/ProjectGroup/TotalAmountRepositoryInterface.php
File size: 424 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\CashFlowIndex\Interfaces;

use Illuminate\Support\Collection;

interface TotalAmountRepositoryInterface
{
    public function getTotalAmountPayment(int $modelID, $filters, $type): float;

    public function getTotalAmountCashPayment(int $modelID, $filters, $type, $debitType): float;

    public function getTotalCommissionPaymentDistribution(int $modelID, $filters, $debutType): float;
}