StocksNew/Modules/Product/app/Repositories/ProductInterface.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

16 lines
379 B
PHP

<?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();
}