first commit
This commit is contained in:
15
Modules/Customer/app/Repositories/CustomerInterface.php
Normal file
15
Modules/Customer/app/Repositories/CustomerInterface.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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();
|
||||
|
||||
}
|
Reference in New Issue
Block a user