File "TotalAmountRepositoryInterface.php"

Full path: /var/www/html/back/app/Repositories/TotalAmountRepositoryInterface.php
File size: 0.41 KB (424 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 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;
}