progress
This commit is contained in:
12
app/Repositories/Interface/AuthorsInterface.php
Normal file
12
app/Repositories/Interface/AuthorsInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repositories\Interface;
|
||||
|
||||
interface AuthorsInterface
|
||||
{
|
||||
public function getAll();
|
||||
public function getAuthorsById($authorId);
|
||||
public function delete($authorId);
|
||||
public function create(array $authorDetail);
|
||||
public function update($authorId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user