public static IGraphElement CreateDotsNode(this ElementBuilder elementBuilder, IStore store, BaseDotsNodeModel model)
        {
            var ui = new DotsNode();

            ui.Setup(model, store, elementBuilder.GraphView);
            return(ui);
        }
        public static GraphElement CreateDotsNode(this INodeBuilder builder, Store store, BaseDotsNodeModel model)
        {
            var functionNode = new DotsNode(model, store, builder.GraphView);

            return(functionNode);
        }