master_template/app/Repositories/NewsCategoriesInterface.php

13 lines
336 B
PHP
Raw Permalink Normal View History

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