New-OMIS/Modules/Admin/app/Repositories/PromotionDemotionInterface.php

13 lines
366 B
PHP
Raw Normal View History

2024-04-14 12:44:29 +00:00
<?php
namespace Modules\Admin\Repositories;
interface PromotionDemotionInterface
{
public function findAll();
public function getPromotionDemotionById($promotionDemotionId);
public function delete($promotionDemotionId);
public function create(array $promotionDemotionDetails);
2024-04-14 12:44:29 +00:00
public function update($promotionDemotionId, array $newDetails);
}