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 IServiceLogic { List? ReadList(ServiceSearch? model); ServiceView? ReadElement(ServiceSearch model); bool Create(ServiceDto model); bool Update(ServiceDto model); bool Delete(ServiceDto model); } }