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