smartEnergyView-backend/app/Repositories/Med5min/Med5minContractInterface.php

19 lines
511 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories\Med5min;
use App\Repositories\ContractInterface;
interface Med5minContractInterface extends ContractInterface
{
public function getDiscretized5min($params);
public function getDiscretized15min($params);
public function getDiscretizedOneHour($params);
public function getDiscretizedOneDay($params);
public function getPowerFactor($params);
public function getDemand($params);
public function getDiscretization($params);
}