using Microsoft.UI.Xaml; using SQLVision.Core.Models; namespace SQLVision.Visualizers.Interfaces; public interface IControlFactory { FrameworkElement CreateControl(ScriptParameter parameter, Action onValueChanged); void UpdateControlState(FrameworkElement control, ScriptParameter parameter, Dictionary currentValues); }