using DeviceContracts.BindingModels; using DeviceContracts.SearchModels; using DeviceContracts.ViewModels; namespace DeviceContracts.BusinessLogicsContracts { public interface IKitLogic { List? ReadList(KitSearchModel? model); KitViewModel? ReadElement(KitSearchModel model); bool Create(KitBindingModel model); bool Update(KitBindingModel model); bool Delete(KitBindingModel model); } }