public QualifiedProperties GetPath() { var path = new QualifiedProperties(); _paths.Add(path); return(path); }
public RefreshAction( QualifiedProperties target, bool executeRefreshDependencies ) { _target = target; _executeRefreshDependencies = executeRefreshDependencies; }
public NestedContext(QualifiedProperties path) { _path = path; }
public PathDefinitionBuilder(QualifiedProperties path) { Check.NotNull(path, nameof(path)); _context = new NestedContext(path); }
public DependencyBuilderOperation(BehaviorChainConfiguration viewModelConfiguration) { _viewModelConfiguration = viewModelConfiguration; TargetProperties = new QualifiedProperties(); }
public ValidationAction( QualifiedProperties target ) { _target = target; }