|
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface StationFuelPricesInterface
|
|
{
|
|
|
|
public function store($station_id, $data);
|
|
|
|
public function update_price($uuid, $price);
|
|
|
|
public function delete($station_id,$ids);
|
|
|
|
public function getByField($field,$value);
|
|
} |