コード例 #1
0
 // bellow readonly access
 public bool AccountExists(string AccountId) => _store.AccountExists(AccountId);
コード例 #2
0
 public async Task <bool> AccountExists(string username, string email)
 {
     return(await AccountCollection.AccountExists(username, email));
 }