smartEnergyView-backend/app/Repositories/Pld/PldContractInterface.php
2022-06-22 17:23:35 -03:00

13 lines
340 B
PHP

<?php
namespace App\Repositories\Pld;
use App\Repositories\ContractInterface;
interface PldContractInterface extends ContractInterface
{
public function getOverviewByRegion();
public function getConsumptionByDaily($params);
public function getListConsumption($params);
public function getConsumptionBySchedule($params);
}