SUBD_Transport_Company/app/Repositories/Interfaces/CarRepositoryInterface.php
2024-01-10 12:56:02 +04:00

14 lines
278 B
PHP

<?php
namespace App\Repositories\Interfaces;
use App\Models\Car;
interface CarRepositoryInterface
{
public function getAllCars();
public function createCar(array $data);
public function updateCar(Car $car, array $data);
public function deleteCar(Car $car);
}