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