15 lines
359 B
PHP
15 lines
359 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Economy;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface EconomyContractInterface extends ContractInterface
|
|
{
|
|
public function getGrossAnnualEconomy($params);
|
|
public function getGrossMonthlyEconomy($params);
|
|
public function getCaptiveMonthlyEconomy($params);
|
|
public function getCostMWhEconomy($params);
|
|
|
|
|
|
} |