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