StocksNew/Modules/Admin/app/Repositories/EthnicityInterface.php

13 lines
318 B
PHP
Raw Normal View History

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