Pass account info to login dialogs
This commit is contained in:
parent
a12391f0ab
commit
d24c10ddf5
5 changed files with 18 additions and 8 deletions
|
|
@ -88,8 +88,7 @@ namespace InternalUtilities
|
|||
|
||||
public Account(string accountId)
|
||||
{
|
||||
ArgumentValidator.EnsureNotNullOrWhiteSpace(accountId, nameof(accountId));
|
||||
AccountId = accountId.Trim();
|
||||
AccountId = ArgumentValidator.EnsureNotNullOrWhiteSpace(accountId, nameof(accountId)).Trim();
|
||||
}
|
||||
|
||||
public override string ToString() => $"{AccountId} - {Locale?.Name ?? "[empty]"}";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue