Files
new_raffles/Modules/Content/app/Interfaces/ContentCategoryInterface.php
2025-07-27 17:40:56 +05:45

16 lines
458 B
PHP

<?php
namespace Modules\Content\Interfaces;
interface ContentCategoryInterface
{
public function findAll();
public function getContentCategoryById($ContentCategoryId);
public function getContentCategoryList();
public function create(array $ContentCategoryDetails);
public function update($ContentCategoryId, array $newDetails);
public function delete($ContentCategoryId);
public function pluck();
public function count();
}