Ejemplo n.º 1
0
 /// <summary>
 /// Clones this AttributeValueHistorical object to a new AttributeValueHistorical object
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="deepCopy">if set to <c>true</c> a deep copy is made. If false, only the basic entity properties are copied.</param>
 /// <returns></returns>
 public static AttributeValueHistorical Clone(this AttributeValueHistorical source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as AttributeValueHistorical);
     }
     else
     {
         var target = new AttributeValueHistorical();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }