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