コード例 #1
0
 public Product GetById(int id)
 {
     var auth = this.AuthenticationInformation;
     var api = new FulfillmentProductsApi(auth.UserName, auth.Password);
     return api.GetById(id);
 }
コード例 #2
0
 public List<Product> Get()
 {
     var auth = this.AuthenticationInformation;
     var api = new FulfillmentProductsApi(auth.UserName, auth.Password);
     return api.Get().ToList();
 }