public PathDefinitionBuilder(QualifiedProperties path)
 {
     Check.NotNull(path, nameof(path));
     _context = new NestedContext(path);
 }
 public PathDefinitionBuilder(IPathDefinitionBuilderContext context)
 {
     Check.NotNull(context, nameof(context));
     _context = context;
 }