StocksNew/Modules/Product/app/Repositories/ProductInterface.php

16 lines
379 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?php
namespace Modules\Product\Repositories;
interface ProductInterface
{
public function findAll();
public function getProductById($ProductId);
public function getProductByEmail($email);
public function delete($ProductId);
public function create($ProductDetails);
public function update($ProductId, array $newDetails);
public function pluck();
}