using GiftShopContracts.BindingModels; using GiftShopContracts.SearchModels; using GiftShopContracts.ViewModels; namespace GiftShopContracts.BusinessLogicsContracts { public interface IComponentLogic { List? ReadList(ComponentSearchModel? model); ComponentViewModel? ReadElement(ComponentSearchModel model); bool Create(ComponentBindingModel model); bool Update(ComponentBindingModel model); bool Delete(ComponentBindingModel model); } }