// bellow readonly access public bool AccountExists(string AccountId) => _store.AccountExists(AccountId);
public async Task <bool> AccountExists(string username, string email) { return(await AccountCollection.AccountExists(username, email)); }