using Contracts.BindingModels; using Contracts.SearchModels; using Contracts.ViewModels; namespace Contracts.BusinessLogicsContracts { public interface IKeyLogic { List? ReadList(KeySearchModel? model); KeyViewModel? ReadElement(KeySearchModel? model); bool Create(KeyBindingModel model); bool Update(KeyBindingModel model); bool Delete(KeyBindingModel model); } }