2023-03-19 12:11:25 +04:00

16 lines
494 B
C#

using AbstractShopContracts.BindingModels;
using AbstractShopContracts.SearchModels;
using AbstractShopContracts.ViewModels;
namespace AbstractShopContracts.BusinessLogicsContracts
{
public interface IFoodLogic
{
List<FoodViewModel>? ReadList(FoodSearchModel? model);
FoodViewModel? ReadElement(FoodSearchModel? model);
bool Create(FoodBindingModel? model);
bool Update(FoodBindingModel? model);
bool Delete(FoodBindingModel? model);
}
}