/// <summary>
 /// Clones this GroupDemographicValue object to a new GroupDemographicValue 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 GroupDemographicValue Clone(this GroupDemographicValue source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as GroupDemographicValue);
     }
     else
     {
         var target = new GroupDemographicValue();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
 /// <summary>
 /// Copies the properties from another GroupDemographicValue object to this GroupDemographicValue object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this GroupDemographicValue target, GroupDemographicValue source)
 {
     target.Id                      = source.Id;
     target.ForeignGuid             = source.ForeignGuid;
     target.ForeignKey              = source.ForeignKey;
     target.GroupDemographicTypeId  = source.GroupDemographicTypeId;
     target.GroupId                 = source.GroupId;
     target.LastCalculatedDateTime  = source.LastCalculatedDateTime;
     target.RelatedEntityId         = source.RelatedEntityId;
     target.RelatedEntityTypeId     = source.RelatedEntityTypeId;
     target.Value                   = source.Value;
     target.ValueAsBoolean          = source.ValueAsBoolean;
     target.ValueAsGuid             = source.ValueAsGuid;
     target.ValueAsNumeric          = source.ValueAsNumeric;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }