restaurant changes
This commit is contained in:
16
Modules/Ingredient/app/Repositories/IngredientInterface.php
Normal file
16
Modules/Ingredient/app/Repositories/IngredientInterface.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Ingredient\Repositories;
|
||||
|
||||
interface IngredientInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getIngredientById($IngredientId);
|
||||
public function getIngredientByEmail($email);
|
||||
public function getIngredientsByCategory($categoryId);
|
||||
public function delete($IngredientId);
|
||||
public function create($IngredientDetails);
|
||||
public function update($IngredientId, array $newDetails);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user