Files
kulakpos_web/public/restaurant/app/Interfaces/Restaurant/RestaurantInterface.php

19 lines
345 B
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace App\Interfaces\Restaurant;
interface RestaurantInterface
{
public function index($request, int $per_page = 50);
public function getAll($request);
public function getById(int $id);
public function create(array $data);
public function update(int $id, array $data);
public function delete(int $id);
}