14 lines
329 B
PHP
14 lines
329 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interfaces;
|
||
|
|
||
|
use App\Models\Delivery;
|
||
|
|
||
|
interface DeliveryRepositoryInterface
|
||
|
{
|
||
|
public function getAllDeliveries();
|
||
|
public function createDelivery(array $data);
|
||
|
public function updateDelivery(Delivery $delivery, array $data);
|
||
|
public function deleteDelivery(Delivery $delivery);
|
||
|
}
|