Beispiel #1
0
 /// <summary>
 /// Clones this ContentChannelType object to a new ContentChannelType 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 ContentChannelType Clone(this ContentChannelType source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as ContentChannelType);
     }
     else
     {
         var target = new ContentChannelType();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
 /// <summary>
 /// Copies the properties from another ContentChannelType object to this ContentChannelType object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this ContentChannelType target, ContentChannelType source)
 {
     target.Id                      = source.Id;
     target.DateRangeType           = source.DateRangeType;
     target.DisablePriority         = source.DisablePriority;
     target.IsSystem                = source.IsSystem;
     target.Name                    = source.Name;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }
Beispiel #3
0
 /// <summary>
 /// Copies the properties from another ContentChannelType object to this ContentChannelType object
 /// </summary>
 /// <param name="target">The target.</param>
 /// <param name="source">The source.</param>
 public static void CopyPropertiesFrom(this ContentChannelType target, ContentChannelType source)
 {
     target.Id                      = source.Id;
     target.DateRangeType           = source.DateRangeType;
     target.DisableContentField     = source.DisableContentField;
     target.DisablePriority         = source.DisablePriority;
     target.DisableStatus           = source.DisableStatus;
     target.ForeignGuid             = source.ForeignGuid;
     target.ForeignKey              = source.ForeignKey;
     target.IncludeTime             = source.IncludeTime;
     target.IsSystem                = source.IsSystem;
     target.Name                    = source.Name;
     target.ShowInChannelList       = source.ShowInChannelList;
     target.CreatedDateTime         = source.CreatedDateTime;
     target.ModifiedDateTime        = source.ModifiedDateTime;
     target.CreatedByPersonAliasId  = source.CreatedByPersonAliasId;
     target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     target.Guid                    = source.Guid;
     target.ForeignId               = source.ForeignId;
 }