StocksNew/Modules/Customer/app/Repositories/CustomerInterface.php

16 lines
387 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?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();
}