| Path : /var/www/html/solarwindia/app/Solar/Repositories/Plant/ |
| Current File : //var/www/html/solarwindia/app/Solar/Repositories/Plant/PlantInterface.php |
<?php
namespace App\Solar\Repositories\Plant;
interface PlantInterface
{
public function getPlant($id, $status);
public function getAllPlantNames();
public function delete($id);
public function getCompanies();
public function getCountries();
public function find($id);
public function update($id, $request);
public function getUsers($request);
public function syncPlant($id);
}