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