using CarRepairShopContracts.BindingModels; using CarRepairShopContracts.SearchModels; using CarRepairShopContracts.ViewModels; namespace CarRepairShopContracts.BusinessLogicsContracts { public interface IClientLogic { List? ReadList(ClientSearchModel? model); ClientViewModel? ReadElement(ClientSearchModel model); bool Create(ClientBindingModel model); bool Update(ClientBindingModel model); bool Delete(ClientBindingModel model); } }