/// <summary> /// Clones this MergeTemplate object to a new MergeTemplate 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 MergeTemplate Clone(this MergeTemplate source, bool deepCopy) { if (deepCopy) { return(source.Clone() as MergeTemplate); } else { var target = new MergeTemplate(); target.CopyPropertiesFrom(source); return(target); } }
/// <summary> /// Copies the properties from another MergeTemplate object to this MergeTemplate object /// </summary> /// <param name="target">The target.</param> /// <param name="source">The source.</param> public static void CopyPropertiesFrom(this MergeTemplate target, MergeTemplate source) { target.Id = source.Id; target.CategoryId = source.CategoryId; target.Description = source.Description; target.ForeignGuid = source.ForeignGuid; target.ForeignKey = source.ForeignKey; target.MergeTemplateTypeEntityTypeId = source.MergeTemplateTypeEntityTypeId; target.Name = source.Name; target.PersonAliasId = source.PersonAliasId; target.TemplateBinaryFileId = source.TemplateBinaryFileId; target.CreatedDateTime = source.CreatedDateTime; target.ModifiedDateTime = source.ModifiedDateTime; target.CreatedByPersonAliasId = source.CreatedByPersonAliasId; target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId; target.Guid = source.Guid; target.ForeignId = source.ForeignId; }