Ejemplo n.º 1
0
 IAccount IAccountCreationActionsSync.CreateAccount(string givenName, string surname, string email, string password, object customData)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, givenName, surname, email, password, customData);
Ejemplo n.º 2
0
 IAccount IAccountCreationActionsSync.CreateAccount(IAccount account)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, account);
Ejemplo n.º 3
0
 Task <IAccount> IAccountCreationActions.CreateAccountAsync(string givenName, string surname, string email, string password, CancellationToken cancellationToken)
 => AccountCreationActionsShared.CreateAccountAsync(this.GetInternalAsyncDataStore(), this.Accounts.Href, givenName, surname, email, password, null, cancellationToken);
Ejemplo n.º 4
0
 IAccount IAccountCreationActionsSync.CreateAccount(IAccount account, Action <AccountCreationOptionsBuilder> creationOptionsAction)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, account, creationOptionsAction);
Ejemplo n.º 5
0
 Task <IAccount> IAccountCreationActions.CreateAccountAsync(IAccount account, CancellationToken cancellationToken)
 => AccountCreationActionsShared.CreateAccountAsync(this.GetInternalAsyncDataStore(), this.Accounts.Href, account, cancellationToken);