using HardwareShopContracts.BindingModels; using HardwareShopContracts.SearchModels; using HardwareShopContracts.ViewModels; namespace HardwareShopContracts.BuisnessLogicsContracts { public interface IGoodLogic { List? ReadList(GoodSearchModel? model); GoodViewModel? ReadElement(GoodSearchModel model); bool Create(GoodBindingModel model); bool Update(GoodBindingModel model); bool Delete(GoodBindingModel model); } }