Exemple #1
0
 /// <summary>
 /// Clones this FollowingSuggested object to a new FollowingSuggested 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 FollowingSuggested Clone(this FollowingSuggested source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as FollowingSuggested);
     }
     else
     {
         var target = new FollowingSuggested();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
Exemple #2
0
 /// <summary>
 /// Copies the properties from another FollowingSuggested object to this FollowingSuggested object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this FollowingSuggested target, FollowingSuggested source)
 {
     target.Id                      = source.Id;
     target.EntityId                = source.EntityId;
     target.EntityTypeId            = source.EntityTypeId;
     target.ForeignGuid             = source.ForeignGuid;
     target.ForeignKey              = source.ForeignKey;
     target.LastPromotedDateTime    = source.LastPromotedDateTime;
     target.PersonAliasId           = source.PersonAliasId;
     target.Status                  = source.Status;
     target.StatusChangedDateTime   = source.StatusChangedDateTime;
     target.SuggestionTypeId        = source.SuggestionTypeId;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }