using FlowerShopContracts.BindingModels; using FlowerShopContracts.SearchModels; using FlowerShopContracts.ViewModels; using FlowerShopDataModels.Models; namespace FlowerShopContracts.BusinessLogicsContracts { public interface IShopLogic { List? ReadList(ShopSearchModel? model); ShopViewModel? ReadElement(ShopSearchModel model); bool Create(ShopBindingModel model); bool Update(ShopBindingModel model); bool Delete(ShopBindingModel model); bool MakeSupply(ShopSearchModel shopModel, IFlowerModel flower, int count); } }