public QualifiedProperties GetPath()
        {
            var path = new QualifiedProperties();

            _paths.Add(path);
            return(path);
        }
示例#2
0
 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);
 }
示例#5
0
 public DependencyBuilderOperation(BehaviorChainConfiguration viewModelConfiguration)
 {
     _viewModelConfiguration = viewModelConfiguration;
     TargetProperties        = new QualifiedProperties();
 }
 public ValidationAction(
     QualifiedProperties target
     )
 {
     _target = target;
 }