master_template/app/Repositories/AuthorsInterface.php
2024-06-23 17:02:56 +05:45

13 lines
290 B
PHP

<?php
namespace App\Repositories;
interface AuthorsInterface
{
public function getAll();
public function getAuthorsById($authorId);
public function delete($authorId);
public function create(array $authorDetail);
public function update($authorId, array $newDetails);
}