13 lines
294 B
PHP
13 lines
294 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Repositories;
|
|
|
|
interface CasteInterface
|
|
{
|
|
public function findAll();
|
|
public function getCasteById($casteId);
|
|
public function delete($casteId);
|
|
public function create(array $casteDetails);
|
|
public function update($casteId, array $newDetails);
|
|
}
|