Exemplo n.º 1
0
 public async Task <IEnumerable <Product> > GetAsync() =>
 await _http.GetAsync <IEnumerable <Product> >("product");
Exemplo n.º 2
0
 public async Task <IEnumerable <Customer> > GetAsync() =>
 await _http.GetAsync <IEnumerable <Customer> >("customer");
Exemplo n.º 3
0
 public async Task <IEnumerable <Order> > GetAsync() =>
 await _http.GetAsync <IEnumerable <Order> >("order");