コード例 #1
0
 /// <summary>
 /// Clones this PersonBadge object to a new PersonBadge 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 PersonBadge Clone(this PersonBadge source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as PersonBadge);
     }
     else
     {
         var target = new PersonBadge();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
コード例 #2
0
 /// <summary>
 /// Copies the properties from another PersonBadge object to this PersonBadge object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this PersonBadge target, PersonBadge source)
 {
     target.Id                      = source.Id;
     target.Description             = source.Description;
     target.EntityTypeId            = source.EntityTypeId;
     target.Name                    = source.Name;
     target.Order                   = source.Order;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }