//it's called from js side like this: this.electronService.sendCommand("wallet.GetPrivateAccountDetails", [ 'account id', 'wallet password' ], (returnValue) => { ...do something with returnValue });
 // returnValue is a serialized version of a dynamic object containing the following information WalletName, AccountId, AccountNumber, PrivateKey, PublicKey
 public async Task <object> GetPrivateAccountDetails(string accountid, string password) => await _context.GetPrivateAccountDetails(accountid, password);