示例#1
0
        public void Import(ate.Definitions.PropertyGroup sourcePropertyGroup)
        {
            this.Map(sourcePropertyGroup);

            if (sourcePropertyGroup.Properties != null)
            {
                foreach (var baseProperty in sourcePropertyGroup.Properties)
                {
                    Properties.Add(new Property(baseProperty));
                }
            }
        }
示例#2
0
 public PropertyGroup(ate.Definitions.PropertyGroup basePropertyGroup)
 {
     Import(basePropertyGroup);
 }