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

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);
}