New-OMIS/Modules/Admin/app/Repositories/PromotionDemotionInterface.php
2024-04-14 18:29:29 +05:45

13 lines
366 B
PHP

<?php
namespace Modules\Admin\Repositories;
interface PromotionDemotionInterface
{
public function findAll();
public function getPromotionDemotionById($promotionDemotionId);
public function delete($promotionDemotionId);
public function create(array $PromotionDemotionDetails);
public function update($promotionDemotionId, array $newDetails);
}