auditionadmin/app/Services/Invoice/InvoiceDataService.php

19 lines
358 B
PHP

<?php
namespace App\Services\Invoice;
use App\Models\School;
interface InvoiceDataService
{
public function getLines(School $school);
public function getLinesTotal(School $school);
public function getLateFeesTotal(School $school);
public function getSchoolFeeTotal(School $school);
public function getGrandTotal(School $school);
}