Exemplo n.º 1
0
        public static void CopyFrom(this SchemaPropertyValueCollection pcProperties, ClientPropertyValueCollection clientProperties)
        {
            pcProperties.NullCheck("pcProperties");

            foreach (var ppt in clientProperties)
            {
                pcProperties[ppt.Key].StringValue = ppt.StringValue;
            }
        }
Exemplo n.º 2
0
        public static void CopyTo(this SchemaPropertyValueCollection pcProperties, ClientPropertyValueCollection clientProperties)
        {
            pcProperties.NullCheck("pcProperties");

            pcProperties.ForEach(pcpv => clientProperties.Add(pcpv.ToClientPropertyValue()));
        }