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