<?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);
}