StocksNew/Modules/Ingredient/app/Repositories/IngredientCategoryInterface.php
2024-09-19 18:33:08 +05:45

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();
}