using CarShowroomDataModels.Views; using CarShowroomDataModels.SearchModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CarShowroomDataModels.Dtos; namespace CarShowroomContracts.BusinessLogic { public interface IModelLogic { List? ReadList(ModelSearch? model); ModelView? ReadElement(ModelSearch model); bool Create(ModelDto model); bool Update(ModelDto model); bool Delete(ModelDto model); } }