Пример #1
0
 /// <summary>
 /// Clones this GroupDemographicType object to a new GroupDemographicType 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 GroupDemographicType Clone(this GroupDemographicType source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as GroupDemographicType);
     }
     else
     {
         var target = new GroupDemographicType();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
Пример #2
0
 /// <summary>
 /// Copies the properties from another GroupDemographicType object to this GroupDemographicType object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this GroupDemographicType target, GroupDemographicType source)
 {
     target.Id = source.Id;
     target.ComponentEntityTypeId  = source.ComponentEntityTypeId;
     target.Description            = source.Description;
     target.ForeignGuid            = source.ForeignGuid;
     target.ForeignKey             = source.ForeignKey;
     target.GroupTypeId            = source.GroupTypeId;
     target.IsAutomated            = source.IsAutomated;
     target.LastRunDurationSeconds = source.LastRunDurationSeconds;
     target.Name                    = source.Name;
     target.RoleFilter              = source.RoleFilter;
     target.RunOnPersonUpdate       = source.RunOnPersonUpdate;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }