13 lines
318 B
PHP
13 lines
318 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Repositories;
|
|
|
|
interface EthnicityInterface
|
|
{
|
|
public function findAll();
|
|
public function getEthnicityById($ethnicityId);
|
|
public function delete($ethnicityId);
|
|
public function create(array $ethnicityDetails);
|
|
public function update($ethnicityId, array $newDetails);
|
|
}
|