Exemplo n.º 1
0
        public async Task TestGetBanksWithDivisions()
        {
            var provider = new BankProvider();
            var result   = await provider.GetBanksWithDivisions();

            Assert.NotNull(result);
        }
Exemplo n.º 2
0
 public IEnumerable <Bank> GetBanksWithDivisions()
 {
     return(_bankProvider.GetBanksWithDivisions().GetAwaiter().GetResult());
 }