2024-06-15 22:23:54 +05:45
|
|
|
<?php
|
|
|
|
|
2024-06-23 17:02:56 +05:45
|
|
|
namespace App\Repositories;
|
2024-06-15 22:23:54 +05:45
|
|
|
|
|
|
|
interface AuthorsInterface
|
|
|
|
{
|
|
|
|
public function getAll();
|
|
|
|
public function getAuthorsById($authorId);
|
|
|
|
public function delete($authorId);
|
|
|
|
public function create(array $authorDetail);
|
|
|
|
public function update($authorId, array $newDetails);
|
|
|
|
}
|