first commit
This commit is contained in:
13
Modules/Admin/app/Repositories/CountryInterface.php
Normal file
13
Modules/Admin/app/Repositories/CountryInterface.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Admin\Repositories;
|
||||
|
||||
interface CountryInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getCountryById($countryId);
|
||||
public function delete($countryId);
|
||||
public function create(array $countryDetails);
|
||||
public function update($countryId, array $newDetails);
|
||||
public function pluck();
|
||||
}
|
Reference in New Issue
Block a user