restaurant changes
This commit is contained in:
15
Modules/Ingredient/app/Repositories/UnitInterface.php
Normal file
15
Modules/Ingredient/app/Repositories/UnitInterface.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Ingredient\Repositories;
|
||||
|
||||
interface UnitInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getUnitById($UnitId);
|
||||
public function getUnitByEmail($email);
|
||||
public function delete($UnitId);
|
||||
public function create($UnitDetails);
|
||||
public function update($UnitId, array $newDetails);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user