unioil-mobile-api/app/Contracts/PromotionStationsInterface.php

15 lines
252 B
PHP

<?php
namespace App\Contracts;
use Illuminate\Http\Request;
interface PromotionStationsInterface
{
public function getByField($field,$value);
public function store($promotion_id, $station_ids);
public function delete($promotion_id);
}