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