using AutomobilePlantContracts.BindingModels; using AutomobilePlantContracts.SearchModels; using AutomobilePlantContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutomobilePlantContracts.BusinessLogicContracts { public interface ICarLogic { List? ReadList(CarSearchModel? model); CarViewModel? ReadElement(CarSearchModel model); bool Create(CarBindingModel model); bool Update(CarBindingModel model); bool Delete(CarBindingModel model); } }