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