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

13 lines
318 B
PHP
Raw Normal View History

2024-08-27 17:48:06 +05:45
<?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);
}