Heera/Modules/Customer/app/Repositories/CustomerInterface.php
2024-05-16 09:31:08 +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();
}