//it's called from js side like this: this.electronService.sendCommand("wallet.GetAccountInformation", [ 'account id' ], (returnValue) => { ...do something with returnValue });
 // returnValue is a serialized version of the Info class containing information like the balance, deposit, account type etc..
 public async Task <EonSharp.Api.Info> GetAccountInformation(string accountid) => await _context.GetAccountInformation(accountid);