public ContainerInstance(IEnumerable <int> path, IRenderingInstructions renderingInstructions, string name, IEnumerable <PropertyInstance> properties, IEnumerable <ComponentInstance> components = null) : base(path, renderingInstructions) { this.Name = name; this.Properties = properties; this.Components = components; }
public AreaInstance(IEnumerable <int> path, IRenderingInstructions renderingInstructions, IEnumerable <ComponentInstance> components = null) : base(path, renderingInstructions) { this.Components = components; }
public AtomInstance(IEnumerable <int> path, IRenderingInstructions renderingInstructions, string name, IEnumerable <PropertyInstance> properties) : base(path, renderingInstructions) { this.Name = name; this.Properties = properties; }
public Builder(IRenderingInstructions renderingInstructions, Func <string, WidgetSpecification> widgetSpecificationFinder, IComponentSpecificationLibrary componentLibrary) { this.renderingInstructions = renderingInstructions; this.widgetSpecificationFinder = widgetSpecificationFinder; this.componentLibrary = componentLibrary; }
protected ComponentInstance(IEnumerable <int> path, IRenderingInstructions renderingInstructions) { this.Path = path; this.RenderingInstructions = renderingInstructions; }
public PageInstance(IEnumerable<ComponentInstance> components, IRenderingInstructions renderingInstructions) { this.Components = components; this.RenderingInstructions = renderingInstructions; }
public PlaceholderInstance(IEnumerable <int> path, IRenderingInstructions renderingInstructions, ComponentInstance content) : base(path, renderingInstructions) { this.Content = content; }
public Builder(IRenderingInstructions renderingInstructions, Func<string, WidgetSpecification> widgetSpecificationFinder, IComponentSpecificationLibrary componentLibrary) { this.renderingInstructions = renderingInstructions; this.widgetSpecificationFinder = widgetSpecificationFinder; this.componentLibrary = componentLibrary; }
public PageInstance(IEnumerable <ComponentInstance> components, IRenderingInstructions renderingInstructions) { this.Components = components; this.RenderingInstructions = renderingInstructions; }