StocksNew/Modules/Admin/app/Repositories/PromotionDemotionInterface.php

13 lines
366 B
PHP
Raw Normal View History

2024-08-27 17:48:06 +05:45
<?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);
}