CourseWork/app/Services/ServiceInterface.php

15 lines
222 B
PHP
Raw Normal View History

2024-04-23 14:52:49 +04:00
<?php
namespace App\Services;
interface ServiceInterface
{
public function getAll();
public function create(array $data);
public function update($model, array $data);
public function delete($model);
}