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