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