예제 #1
0
 public bool Update( int BusinessEntityId,  string Username,  string PasswordHash,  string PasswordSalt,  string ActivationCode,  bool IsActivated,  bool IsActive,  Guid RowGuid,  DateTime ModifiedDate,  int Original_BusinessEntityId)
 {
     CredentialDAC credentialComponent = new CredentialDAC();
     return credentialComponent.UpdateCredential( BusinessEntityId,  Username,  PasswordHash,  PasswordSalt,  ActivationCode,  IsActivated,  IsActive,  RowGuid,  ModifiedDate,  Original_BusinessEntityId);
 }
예제 #2
0
 public bool Update(Credential credential ,int old_businessEntityId)
 {
     CredentialDAC credentialComponent = new CredentialDAC();
     return credentialComponent.UpdateCredential( credential.BusinessEntityId,  credential.Username,  credential.PasswordHash,  credential.PasswordSalt,  credential.ActivationCode,  credential.IsActivated,  credential.IsActive,  credential.RowGuid,  credential.ModifiedDate,  old_businessEntityId);
 }