16 lines
459 B
PHP
16 lines
459 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Ingredient\Repositories;
|
||
|
|
||
|
interface IngredientCategoryInterface
|
||
|
{
|
||
|
public function findAll();
|
||
|
public function getIngredientCategoryById($IngredientCategoryId);
|
||
|
public function getIngredientCategoryByEmail($email);
|
||
|
public function delete($IngredientCategoryId);
|
||
|
public function create($IngredientCategoryDetails);
|
||
|
public function update($IngredientCategoryId, array $newDetails);
|
||
|
public function pluck();
|
||
|
|
||
|
}
|