using STOContracts.BindingModels; using STOContracts.SearchModels; using STOContracts.ViewModels; namespace STOContracts.BusinessLogicsContracts { public interface ICarLogic { List? ReadList(CarSearchModel? model); CarViewModel? ReadElement(CarSearchModel model); bool Create(CarBindingModel model); bool Update(CarBindingModel model); bool Delete(CarBindingModel model); } }