first change

This commit is contained in:
2025-07-27 17:40:56 +05:45
commit f8b9a6725b
3152 changed files with 229528 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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();
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Modules\Content\Interfaces;
interface ContentInterface
{
public function findAll();
public function findAllUpcomingScheduledContent();
public function getContentById($ContentId);
public function getContentByEmail($email);
public function delete($ContentId);
public function create($ContentDetails);
public function update($ContentId, array $newDetails);
public function pluck();
public function count();
}