示例#1
0
 /// <summary>
 /// Clones this BenevolenceRequestDocument object to a new BenevolenceRequestDocument 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 BenevolenceRequestDocument Clone(this BenevolenceRequestDocument source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as BenevolenceRequestDocument);
     }
     else
     {
         var target = new BenevolenceRequestDocument();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
示例#2
0
 /// <summary>
 /// Copies the properties from another BenevolenceRequestDocument object to this BenevolenceRequestDocument object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this BenevolenceRequestDocument target, BenevolenceRequestDocument source)
 {
     target.Id = source.Id;
     target.BenevolenceRequestId = source.BenevolenceRequestId;
     target.BinaryFileId         = source.BinaryFileId;
     target.ForeignGuid          = source.ForeignGuid;
     target.ForeignKey           = source.ForeignKey;
     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;
 }