13 lines
346 B
PHP
13 lines
346 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interface;
|
||
|
|
||
|
interface NewsCategoriesInterface
|
||
|
{
|
||
|
public function getAll();
|
||
|
public function getNewsCategoriesById($newsCategoriesId);
|
||
|
public function delete($newsCategoriesId);
|
||
|
public function create(array $newsCategoriesDetail);
|
||
|
public function update($newsCategoriesId, array $newDetails);
|
||
|
}
|