master_template/app/Repositories/Interface/NewsInterface.php
2024-06-15 22:23:54 +05:45

13 lines
286 B
PHP

<?php
namespace App\Repositories\Interface;
interface NewsInterface
{
public function getAll();
public function getNewsById($newsId);
public function delete($newsId);
public function create(array $newsDetail);
public function update($newsId, array $newDetails);
}