using DeviceContracts.BindingModels; using DeviceContracts.SearchModels; using DeviceContracts.ViewModels; namespace DeviceContracts.BusinessLogicsContracts { public interface IKindLogic { List? ReadList(KindSearchModel? model); KindViewModel? ReadElement(KindSearchModel model); bool Create(KindBindingModel model); bool Update(KindBindingModel model); bool Delete(KindBindingModel model); } }