/// <summary> /// Clones this CommunicationResponse object to a new CommunicationResponse 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 CommunicationResponse Clone(this CommunicationResponse source, bool deepCopy) { if (deepCopy) { return(source.Clone() as CommunicationResponse); } else { var target = new CommunicationResponse(); target.CopyPropertiesFrom(source); return(target); } }
/// <summary> /// Copies the properties from another CommunicationResponse object to this CommunicationResponse object /// </summary> /// <param name="target">The target.</param> /// <param name="source">The source.</param> public static void CopyPropertiesFrom(this CommunicationResponse target, CommunicationResponse source) { target.Id = source.Id; target.ForeignGuid = source.ForeignGuid; target.ForeignKey = source.ForeignKey; target.FromPersonAliasId = source.FromPersonAliasId; target.IsRead = source.IsRead; target.MessageKey = source.MessageKey; target.RelatedCommunicationId = source.RelatedCommunicationId; target.RelatedMediumEntityTypeId = source.RelatedMediumEntityTypeId; target.RelatedSmsFromDefinedValueId = source.RelatedSmsFromDefinedValueId; target.RelatedTransportEntityTypeId = source.RelatedTransportEntityTypeId; target.Response = source.Response; target.ToPersonAliasId = source.ToPersonAliasId; target.CreatedDateTime = source.CreatedDateTime; target.ModifiedDateTime = source.ModifiedDateTime; target.CreatedByPersonAliasId = source.CreatedByPersonAliasId; target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId; target.Guid = source.Guid; target.ForeignId = source.ForeignId; }