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

16 lines
387 B
PHP

<?php
namespace Modules\Customer\Repositories;
interface CustomerInterface
{
public function findAll();
public function getCustomerById($CustomerId);
public function getCustomerByEmail($email);
public function delete($CustomerId);
public function create($CustomerDetails);
public function update($CustomerId, array $newDetails);
public function pluck();
}