Simple Client Model for UserLogin
Exemple #1
0
 /// <summary>
 /// Copies the base properties from a source UserLogin object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( UserLogin source )
 {
     this.Id = source.Id;
     this.ApiKey = source.ApiKey;
     this.EntityTypeId = source.EntityTypeId;
     this.FailedPasswordAttemptCount = source.FailedPasswordAttemptCount;
     this.FailedPasswordAttemptWindowStartDateTime = source.FailedPasswordAttemptWindowStartDateTime;
     this.IsConfirmed = source.IsConfirmed;
     this.IsLockedOut = source.IsLockedOut;
     this.IsOnLine = source.IsOnLine;
     this.LastActivityDateTime = source.LastActivityDateTime;
     this.LastLockedOutDateTime = source.LastLockedOutDateTime;
     this.LastLoginDateTime = source.LastLoginDateTime;
     this.LastPasswordChangedDateTime = source.LastPasswordChangedDateTime;
     this.LastPasswordExpirationWarningDateTime = source.LastPasswordExpirationWarningDateTime;
     this.Password = source.Password;
     this.PersonId = source.PersonId;
     this.UserName = source.UserName;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Exemple #2
0
 /// <summary>
 /// Copies the base properties from a source UserLogin object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( UserLogin source )
 {
     this.Id = source.Id;
     this.ApiKey = source.ApiKey;
     this.EntityTypeId = source.EntityTypeId;
     this.FailedPasswordAttemptCount = source.FailedPasswordAttemptCount;
     this.FailedPasswordAttemptWindowStartDateTime = source.FailedPasswordAttemptWindowStartDateTime;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.IsConfirmed = source.IsConfirmed;
     this.IsLockedOut = source.IsLockedOut;
     this.IsOnLine = source.IsOnLine;
     this.IsPasswordChangeRequired = source.IsPasswordChangeRequired;
     this.LastActivityDateTime = source.LastActivityDateTime;
     this.LastLockedOutDateTime = source.LastLockedOutDateTime;
     this.LastLoginDateTime = source.LastLoginDateTime;
     this.LastPasswordChangedDateTime = source.LastPasswordChangedDateTime;
     this.LastPasswordExpirationWarningDateTime = source.LastPasswordExpirationWarningDateTime;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Password = source.Password;
     this.PersonId = source.PersonId;
     this.UserName = source.UserName;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }