2024-06-15 16:38:54 +00:00
|
|
|
<?php
|
|
|
|
|
2024-06-23 11:17:56 +00:00
|
|
|
namespace App\Repositories;
|
2024-06-15 16:38:54 +00:00
|
|
|
|
|
|
|
interface NewsCategoriesInterface
|
|
|
|
{
|
|
|
|
public function getAll();
|
|
|
|
public function getNewsCategoriesById($newsCategoriesId);
|
|
|
|
public function delete($newsCategoriesId);
|
|
|
|
public function create(array $newsCategoriesDetail);
|
|
|
|
public function update($newsCategoriesId, array $newDetails);
|
|
|
|
}
|