public async Task <IReadOnlyCollection <AssetBalanceModel> > GetAllAsync() { IReadOnlyCollection <Balance> balances = await _balanceService.GetAllAsync(); var model = Mapper.Map <IReadOnlyCollection <AssetBalanceModel> >(balances); return(model); }