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