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