Ejemplo n.º 1
0
 /// <summary>
 /// Clones this EventItemOccurrenceChannelItem object to a new EventItemOccurrenceChannelItem 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 EventItemOccurrenceChannelItem Clone(this EventItemOccurrenceChannelItem source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as EventItemOccurrenceChannelItem);
     }
     else
     {
         var target = new EventItemOccurrenceChannelItem();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Copies the properties from another EventItemOccurrenceChannelItem object to this EventItemOccurrenceChannelItem object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this EventItemOccurrenceChannelItem target, EventItemOccurrenceChannelItem source)
 {
     target.Id = source.Id;
     target.ContentChannelItemId    = source.ContentChannelItemId;
     target.EventItemOccurrenceId   = source.EventItemOccurrenceId;
     target.ForeignGuid             = source.ForeignGuid;
     target.ForeignKey              = source.ForeignKey;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid      = source.Guid;
     target.ForeignId = source.ForeignId;
 }