using CarRepairShopContracts.BindingModels; using CarRepairShopContracts.SearchModels; using CarRepairShopContracts.ViewModels; namespace CarRepairShopContracts.BusinessLogicsContracts { public interface IImplementerLogic { List? ReadList(ImplementerSearchModel? model); ImplementerViewModel? ReadElement(ImplementerSearchModel model); bool Create(ImplementerBindingModel model); bool Update(ImplementerBindingModel model); bool Delete(ImplementerBindingModel model); } }